mneethiraj commented on code in PR #454: URL: https://github.com/apache/atlas/pull/454#discussion_r2373570702
########## graphdb/janusgraph-rdbms/src/main/resources/META-INF/postgres/create_schema.sql: ########## @@ -25,12 +25,12 @@ CREATE INDEX IF NOT EXISTS atlas_entity_audit_idx_entity_id_event_time ON atlas_ -- DB objects for JanusGraph backend store -CREATE SEQUENCE IF NOT EXISTS janus_store_seq; -CREATE SEQUENCE IF NOT EXISTS janus_key_seq; -CREATE SEQUENCE IF NOT EXISTS janus_column_seq ; +CREATE SEQUENCE IF NOT EXISTS janus_store_seq INCREMENT BY 1 CACHE 1; Review Comment: janus_store table has only 8 entries, and is populated only at the initialization. Hence caching is unnecessary here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
