Results 21 comments of GreatYYX

Thanks. I'll add `sync` into new release to avoid this cache problem. Again, "kafka_manager still outputs Updating internal state" is not an error message, it's just the heart beat log....

updated mydig and etl engine to support re-config while starting up

Now root path is free, but landmark tool still needs to have a unified base path.

https://github.com/usc-isi-i2/dig-etl-engine/issues/265#issuecomment-423293507 @saggu would be better to add this explanation to digui instruction

Round robin is not efficient in our current design. Another problem is that when the daemon thread finds out desired num is greater than actual num, it will put all...

Two possible solutions here: - let upstream provide the feature to pickle interactively defined property type and the instance of the type. - use another way to indicate if the...

Upstream provided another solution: override `__reduce__` in `cached_property`: ``` def __reduce__(self): return cached_property.__new__, (cached_property, ), {'func': self.func} ```

https://github.com/usc-isi-i2/etk/blob/76c293dbd9a77689ff39061243bab4fddb65dc06/etk/knowledge_graph/node.py#L45 need to validate URI here

Code of date extractor is here: https://github.com/usc-isi-i2/etk/blob/master/etk/extractors/date_extractor.py#L141 It also supports extracting dates from self-defined formats: https://github.com/usc-isi-i2/etk/blob/master/examples/date_extractor/date_example.py#L34

@gromgull Wow, 4 years ago 🤦‍♂️ I personally agree with your solution, two levels of APIs, one for `store` one for `graph` (Why it's not merged? Haven't finished yet?). Even...