To add to what Ahmed said....I got this from one of the FileNet development team:
ES/OS will require significantly more disk space than CSS as it will have a full replica for each primary shard.
If they had 100GB of indexed data with CSS I would expect that the ES/OS index size would be 2-3 times more.
When I was doing side by side comparisons of FNCM 5.7.0 with CSS vs OpenSearch using the same EngDev dataset , my results were
raw data size : 96 GB. CSS index size 21GB and OpenSearch v.2.19 index size 72 GB.
If they see 2.4 TB for just 11 million documents something is not right and needs to be investigated further.
Does the index size displayed in ACCE align with what the OpenSearch reports for the same index?
To get index size from OpenSearch the customer can use simple queries via a browser ( FireFox, etc.) , or install Elasticvue plugin and had a full view of the index.
For example :
https://serverName:9200/_cat/indices
https://serverName:9200/_cat/shards
------------------------------
RUTH Hildebrand-Lund
------------------------------
Original Message:
Sent: Wed October 29, 2025 03:10 AM
From: Michael Pressler
Subject: CSS to Opensearch migration: Opensearch index extremely large
Hi Ahmed,
many thanks for your feedback. I will check it with our client.
Regards
Michael
------------------------------
Michael Pressler
Original Message:
Sent: Tue October 28, 2025 03:11 AM
From: Ahmed Alsareti
Subject: CSS to Opensearch migration: Opensearch index extremely large
Hi Michael,
This size difference is expected - OpenSearch typically consumes much more space than CSS since it stores _source, doc values, and full JSON metadata by default.
There's no direct FileNet setting to control index size - it's mainly governed by OpenSearch configuration. You can, however:
Review the index mapping and disable large or unnecessary fields.
Enable Lucene compression: "index.codec": "best_compression".
Reduce replicas to 0 for non-production.
Limit which properties FileNet sends to OpenSearch through the IndexArea definition.
These optimizations are also discussed in the IBM paper Using Elasticsearch and OpenSearch for Content Indexing and Content-Based Retrievals (CBR)
------------------------------
Ahmed Alsareti
Original Message:
Sent: Mon October 27, 2025 04:11 AM
From: Michael Pressler
Subject: CSS to Opensearch migration: Opensearch index extremely large
Hello Community,
A customer has started indexing their system test environment in OpenSearch in parallel.
After just under 11 million documents, almost 2.4 TB of disk space has already been used.
By comparison, the CSS index for all 22 million documents is only 100 GB in size.
The IndexArea was set to 3 shards / 1 replica.
Question:
Is there a setting in FileNet or in general to influence the size? Unfortunately, the FileNet documentation does not provide any information on this.
Regards
Michael
------------------------------
Michael Pressler
------------------------------