views:

38

answers:

0

How do I specify that a property should not be indexed using the bulk loader yaml definition?

transformers:
- kind: SomeEntity
  connector: csv

  property_map:
  - property: prop
    external_name: prop
    export_transform: int

  - property: prop_unindexed
    external_name: prop_unindexed
    export_transform: int
    # ... what goes here ...

Does anyone have an example of how to make prop_unindexed unindexed?