dry_run 벌크 로드할 때 dry_run 을 사용해서 실제로 변환이 잘 되는지, configuration 문제는 없는지 체크할 것. 포스트 프로세싱 1. 내보내기할 때 필터링하기 def post_export (instance, dictionary, bulkload_state): if dictionary[‘access’] == ‘secret’: return None else: return dictionary 2. 불러오기할 때 다른 엔티티 만들기 def post_import(input_dict, instance, bulkload_state): child_instance = models.ChildKind(parent=instance, key_name=input_dict[‘childkey’], value=input_dict[‘childvalue’]) return (instance, child_instance) 데이터가 비어 있을 때 에러가 나지 않게 하기 – transform.none_if_empty (type) (on import) – transform.empty_if_none (type) (on export) 모델 객체를 써서 검증하기 python_preamble: - import: mymodels transformers: - model: mymodels.Customer