Mailing List Archives
Authenticated access
|
|
|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [HTCondor-users] HTCondor as NoSql database.
- Date: Thu, 08 Aug 2019 16:36:01 -0500 (CDT)
- From: Todd L Miller <tlmiller@xxxxxxxxxxx>
- Subject: Re: [HTCondor-users] HTCondor as NoSql database.
condor_advertise can write to the COLLECTOR, but the data in the
collector is stored only in memory, so this would be a runtime-only
key-value store. You would have to re-advertise everything each time
the collector was restarted.
The collector can be forced to persist certain ads to disk; see
COLLECTOR_PERSISTENT_AD_LOG and/or the absent ads feature. These features
weren't intended for use a general-purpose NoSQL database, but if you're
still interested:
https://htcondor.readthedocs.io/en/latest/admin-manual/configuration-macros.html#index-730
and/or
https://htcondor.readthedocs.io/en/latest/admin-manual/monitoring.html#absent-classads
- ToddM