The Implementation/SharedObjects/Interfaces/Discovery/ folder in the Project tree is a folder that holds all Catalog and Discovery process-related configuration files:

Show Catalog Commands is a Web Studio setting that either shows or hides the Catalog's related commands — Run Discovery Job and Open in Catalog — in the Web Studio.
The properties-info.json is a configuration file used by the Catalog application to determine the view and the behavior of various Catalog UI elements. The following settings can be performed:
"editable": true — the property is editable via the Edit Catalog capabililty."deletable": true — the property can be deleted via the Edit Catalog capabililty."searchable": true — the Catalog can be searched using this property in the Advanced Search screen."filterable": true — the Catalog can be filtered using the Catalog Filter screen."values":[] specifies the list of valid values for a property. For some properties, this list is combined with programmatically retrieved values (e.g., classification)."allow_custom_values": true defines the ability to populate a custom value for a property that includes a drop-down list. "hidden": true — the property is hidden from the Catalog's Properties tab.The properties-info.json file is located in the fabric/staticWeb/catalog folder.
In order to perform the project-level overrides in the properties-info.json file:
Create a catalog folder under the Web folder of the Web Services LU, and copy the file into it.

The NEO4J_SERVER_MEMORY_HEAP_MAX_SIZE_MB parameter in the [data_discovery] section of the config.ini file specifies the maximum heap size for the Neo4j server. By default, it is set to 2048 MB.
The DATA_SNAP_WRITE_MEMORY_CAP_MB parameter in the [data_discovery] section of the config.ini file specifies the maximum Fabric memory allocated for the Data Snapshot process. This parameter helps to balance the Fabric memory when running Discovery on a data platform with multiple schemas or when multiple Discovery jobs run in parallel on the same Neo4j DB.
When the in-memory data reaches this maximum predefined limit, the Data Snapshot's data is committed to the SQLite file.
By default, this parameter is set to 4096 MB. For very large data sources, it is recommended to increase the value, given that the system has sufficient resources.
STUDIO_INTERFACES_FROM_CATALOG (known as ENABLE_DATA_DISCOVERY before version 8.3) is a hidden configuration parameter that defines whether the interfaces metadata (in the Web Studio's Interface Explorer) should be retrieved from the Catalog or from the source DB. By default, it is set to 'true'. If the Fabric configuration does not include Catalog, the STUDIO_INTERFACES_FROM_CATALOG parameter should be added to this section and set to 'false', to prevent the Studio APIs from trying to retrieve the metadata from the Catalog.
Starting from V8.3.1, during the version creation in the GraphDB step of the Discovery job, the list of version changes are split into batches and written into Neo4j as separate transactions, allowing the batches to run in parallel and by that reduce the memory consumption. The NODES_BATCH_SIZE_PER_TRANSACTION parameter in the [data_discovery] section of the config.ini file specifies the maximum number of nodes written into Neo4j in each transaction. By default, it is set to 5000. In addition, the RELATIONS_BATCH_SIZE_PER_TRANSACTION parameters specifies the maximum number of relations written into Neo4j per each transaction. By default, it is set to 1000.
The Implementation/SharedObjects/Interfaces/Discovery/ folder in the Project tree is a folder that holds all Catalog and Discovery process-related configuration files:

Show Catalog Commands is a Web Studio setting that either shows or hides the Catalog's related commands — Run Discovery Job and Open in Catalog — in the Web Studio.
The properties-info.json is a configuration file used by the Catalog application to determine the view and the behavior of various Catalog UI elements. The following settings can be performed:
"editable": true — the property is editable via the Edit Catalog capabililty."deletable": true — the property can be deleted via the Edit Catalog capabililty."searchable": true — the Catalog can be searched using this property in the Advanced Search screen."filterable": true — the Catalog can be filtered using the Catalog Filter screen."values":[] specifies the list of valid values for a property. For some properties, this list is combined with programmatically retrieved values (e.g., classification)."allow_custom_values": true defines the ability to populate a custom value for a property that includes a drop-down list. "hidden": true — the property is hidden from the Catalog's Properties tab.The properties-info.json file is located in the fabric/staticWeb/catalog folder.
In order to perform the project-level overrides in the properties-info.json file:
Create a catalog folder under the Web folder of the Web Services LU, and copy the file into it.

The NEO4J_SERVER_MEMORY_HEAP_MAX_SIZE_MB parameter in the [data_discovery] section of the config.ini file specifies the maximum heap size for the Neo4j server. By default, it is set to 2048 MB.
The DATA_SNAP_WRITE_MEMORY_CAP_MB parameter in the [data_discovery] section of the config.ini file specifies the maximum Fabric memory allocated for the Data Snapshot process. This parameter helps to balance the Fabric memory when running Discovery on a data platform with multiple schemas or when multiple Discovery jobs run in parallel on the same Neo4j DB.
When the in-memory data reaches this maximum predefined limit, the Data Snapshot's data is committed to the SQLite file.
By default, this parameter is set to 4096 MB. For very large data sources, it is recommended to increase the value, given that the system has sufficient resources.
STUDIO_INTERFACES_FROM_CATALOG (known as ENABLE_DATA_DISCOVERY before version 8.3) is a hidden configuration parameter that defines whether the interfaces metadata (in the Web Studio's Interface Explorer) should be retrieved from the Catalog or from the source DB. By default, it is set to 'true'. If the Fabric configuration does not include Catalog, the STUDIO_INTERFACES_FROM_CATALOG parameter should be added to this section and set to 'false', to prevent the Studio APIs from trying to retrieve the metadata from the Catalog.
Starting from V8.3.1, during the version creation in the GraphDB step of the Discovery job, the list of version changes are split into batches and written into Neo4j as separate transactions, allowing the batches to run in parallel and by that reduce the memory consumption. The NODES_BATCH_SIZE_PER_TRANSACTION parameter in the [data_discovery] section of the config.ini file specifies the maximum number of nodes written into Neo4j in each transaction. By default, it is set to 5000. In addition, the RELATIONS_BATCH_SIZE_PER_TRANSACTION parameters specifies the maximum number of relations written into Neo4j per each transaction. By default, it is set to 1000.