Eshu
Eshu
It would be great to have quoted periods in names like ``` xxx.yyy: 1 xxx.yyy\.zzz: 2 ``` For example, if I want to add a domain definitions in the configuration:...
What will return `cfg.getConfig("domains").root().keySet()` in this case?
Yes, I see now... But then I met another pitfall: ``` @ val cfg = ConfigFactory.parseString("""domains {"google.com" {}, "www.google.com" {}, "github.com" {}}""") cfg: Config = Config(SimpleConfigObject({"domains":{"github.com":{},"google.com":{},"www.google.com":{}}})) @ val domains =...
Thank you for explanation and for HOCON itself :)
> #12001 is a likely duplicate, so I've closed it. there, the code is > > ```scala > class Event[+T](weight: Int, data: T) extends Ordered[Event[_ def compare(that: Event[_ } >...
@nsivabalan Workaround is working, but the bug still exists. If workaround is a resolution, then yes, it is resolved.
It looks like the response is here: https://github.com/apache/hudi/issues/2841 So if I have a job that commits data 1 time per 15 minutes, to keep weekly data do I need to...
@fengjian428 I added the beginning and the end of .hoodie:
Current situation with incremental read: Case 1, previous commit time from the incremental reading was 20220706130300379 ``` +-----------------------+------------------------+ |min(updated_at) |min(_hoodie_commit_time)| +-----------------------+------------------------+ |2022-07-10 00:15:00.727|20220710011447293 | +-----------------------+------------------------+ ``` Case 2, previous commit...
@nsivabalan If there is no way to read all records since a specified time, it makes no sense in incremental read at all. Is it possible to implement incremental readin...