http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/developing/region_options/dynamic_region_creation.html.md.erb ---------------------------------------------------------------------- diff --git a/developing/region_options/dynamic_region_creation.html.md.erb b/developing/region_options/dynamic_region_creation.html.md.erb index a90eaae..2974f22 100644 --- a/developing/region_options/dynamic_region_creation.html.md.erb +++ b/developing/region_options/dynamic_region_creation.html.md.erb @@ -4,11 +4,11 @@ title: Creating Regions Dynamically You can dynamically create regions in your application code and automatically instantiate them on members of a distributed system. -If your application does not require partitioned regions, you can use the <span class="keyword apiname">com.gemstone.gemfire.cache.DynamicRegionFactory</span> class to dynamically create regions, or you can create them using the `<dynamic-region-factory>` element in the cache.xml file that defines the region. See [<dynamic-region-factory>](../../reference/topics/cache_xml.html#dynamic-region-factory). +If your application does not require partitioned regions, you can use the <span class="keyword apiname">org.apache.geode.cache.DynamicRegionFactory</span> class to dynamically create regions, or you can create them using the `<dynamic-region-factory>` element in the cache.xml file that defines the region. See [<dynamic-region-factory>](../../reference/topics/cache_xml.html#dynamic-region-factory). Due to the number of options involved, most developers use functions to create regions dynamically in their applications, as described in this topic. Dynamic regions can also be created from the `gfsh` command line. -For a complete discussion of using Geode functions, see [Function Execution](../function_exec/chapter_overview.html). Functions use the <span class="keyword apiname">com.gemstone.gemfire.cache.execute.FunctionService</span> class. +For a complete discussion of using Geode functions, see [Function Execution](../function_exec/chapter_overview.html). Functions use the <span class="keyword apiname">org.apache.geode.cache.execute.FunctionService</span> class. For example, the following Java classes define and use a function for dynamic region creation: @@ -17,17 +17,17 @@ The <span class="keyword apiname">CreateRegionFunction</span> class defines a fu ``` pre #CreateRegionFunction.java -import com.gemstone.gemfire.cache.Cache; -import com.gemstone.gemfire.cache.CacheFactory; -import com.gemstone.gemfire.cache.DataPolicy; -import com.gemstone.gemfire.cache.Declarable; -import com.gemstone.gemfire.cache.Region; -import com.gemstone.gemfire.cache.RegionAttributes; -import com.gemstone.gemfire.cache.RegionFactory; -import com.gemstone.gemfire.cache.Scope; +import org.apache.geode.cache.Cache; +import org.apache.geode.cache.CacheFactory; +import org.apache.geode.cache.DataPolicy; +import org.apache.geode.cache.Declarable; +import org.apache.geode.cache.Region; +import org.apache.geode.cache.RegionAttributes; +import org.apache.geode.cache.RegionFactory; +import org.apache.geode.cache.Scope; -import com.gemstone.gemfire.cache.execute.Function; -import com.gemstone.gemfire.cache.execute.FunctionContext; +import org.apache.geode.cache.execute.Function; +import org.apache.geode.cache.execute.FunctionContext; import java.util.Properties; @@ -120,16 +120,16 @@ The <span class="keyword apiname">CreateRegionCacheListener</span> class is a ca ``` pre #CreateRegionCacheListener.java -import com.gemstone.gemfire.cache.Cache; -import com.gemstone.gemfire.cache.CacheFactory; -import com.gemstone.gemfire.cache.Declarable; -import com.gemstone.gemfire.cache.EntryEvent; -import com.gemstone.gemfire.cache.Region; -import com.gemstone.gemfire.cache.RegionAttributes; -import com.gemstone.gemfire.cache.RegionEvent; -import com.gemstone.gemfire.cache.RegionExistsException; +import org.apache.geode.cache.Cache; +import org.apache.geode.cache.CacheFactory; +import org.apache.geode.cache.Declarable; +import org.apache.geode.cache.EntryEvent; +import org.apache.geode.cache.Region; +import org.apache.geode.cache.RegionAttributes; +import org.apache.geode.cache.RegionEvent; +import org.apache.geode.cache.RegionExistsException; -import com.gemstone.gemfire.cache.util.CacheListenerAdapter; +import org.apache.geode.cache.util.CacheListenerAdapter; import java.util.Map; import java.util.Properties;
http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/developing/storing_data_on_disk/storing_data_on_disk.html.md.erb ---------------------------------------------------------------------- diff --git a/developing/storing_data_on_disk/storing_data_on_disk.html.md.erb b/developing/storing_data_on_disk/storing_data_on_disk.html.md.erb index 5f6f065..9aefd7c 100644 --- a/developing/storing_data_on_disk/storing_data_on_disk.html.md.erb +++ b/developing/storing_data_on_disk/storing_data_on_disk.html.md.erb @@ -55,8 +55,8 @@ You can also configure Regions and Disk Stores using the gfsh command-line inter | Related Topics | |---------------------------------------------------------------------------------------| -| `com.gemstone.gemfire.cache.RegionAttributes` for data region persistence information | -| `com.gemstone.gemfire.cache.EvictionAttributes` for data region overflow information | -| `com.gemstone.gemfire.cache.server.ClientSubscriptionConfig` | +| `org.apache.geode.cache.RegionAttributes` for data region persistence information | +| `org.apache.geode.cache.EvictionAttributes` for data region overflow information | +| `org.apache.geode.cache.server.ClientSubscriptionConfig` | http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/developing/transactions/JTA_transactions.html.md.erb ---------------------------------------------------------------------- diff --git a/developing/transactions/JTA_transactions.html.md.erb b/developing/transactions/JTA_transactions.html.md.erb index cbb303d..31d0cbb 100644 --- a/developing/transactions/JTA_transactions.html.md.erb +++ b/developing/transactions/JTA_transactions.html.md.erb @@ -198,7 +198,7 @@ To run a global transaction, perform the following steps: 3. Configure Geode for any necessary transactional behavior. Enable `copy-on-read` for your cache and specify a transaction listener, if you need one. See [Setting Global Copy on Read](working_with_transactions.html#concept_vx2_gs4_5k) and [Configuring Transaction Plug-In Event Handlers](working_with_transactions.html#concept_ocw_vf1_wk) for details. 4. Make sure that JTA transactions are not disabled in the `cache.xml` file or the application code. 5. Initialize the Geode cache. -6. Get an initial context through `com.gemstone.gemfire.cache.Cache.getJNDIContext`. For example: +6. Get an initial context through `org.apache.geode.cache.Cache.getJNDIContext`. For example: ``` pre Context ctx = cache.getJNDIContext(); http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/developing/transactions/transactional_function_example.html.md.erb ---------------------------------------------------------------------- diff --git a/developing/transactions/transactional_function_example.html.md.erb b/developing/transactions/transactional_function_example.html.md.erb index 7397b52..6539131 100644 --- a/developing/transactions/transactional_function_example.html.md.erb +++ b/developing/transactions/transactional_function_example.html.md.erb @@ -14,7 +14,7 @@ public class TransactionalFunction extends FunctionAdapter { private Random random = new Random(); /* (non-Javadoc) - * @see com.gemstone.gemfire.cache.execute.FunctionAdapter#execute(com.gemstone.gemfire.cache.execute.FunctionContext) + * @see org.apache.geode.cache.execute.FunctionAdapter#execute(org.apache.geode.cache.execute.FunctionContext) */ @Override public void execute(FunctionContext context) { @@ -42,7 +42,7 @@ public class TransactionalFunction extends FunctionAdapter { } /* (non-Javadoc) - * @see com.gemstone.gemfire.cache.execute.FunctionAdapter#getId() + * @see org.apache.geode.cache.execute.FunctionAdapter#getId() */ @Override public String getId() { http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/getting_started/querying_quick_reference.html.md.erb ---------------------------------------------------------------------- diff --git a/getting_started/querying_quick_reference.html.md.erb b/getting_started/querying_quick_reference.html.md.erb index 7be742a..a4d051d 100644 --- a/getting_started/querying_quick_reference.html.md.erb +++ b/getting_started/querying_quick_reference.html.md.erb @@ -490,9 +490,9 @@ ELEMENT(SELECT DISTINCT * FROM /exampleRegion WHERE id = 'XYZ-1').status = 'acti ## <a id="reference_D5CE64F5FD6F4A808AEFB748C867189E__section_5383407F9D004D4EB4E695252EBA1EF0" class="no-quick-link"></a>Which APIs should I use to write my queries? -If you are querying a Java applicationâs local cache or querying other members, use [com.gemstone.gemfire.cache.Cache.getQueryService](/releases/latest/javadoc/com/gemstone/gemfire/cache/query/QueryService.html). +If you are querying a Java applicationâs local cache or querying other members, use [org.apache.geode.cache.Cache.getQueryService](/releases/latest/javadoc/com/gemstone/gemfire/cache/query/QueryService.html). -If you are writing a Java client to server query, use [com.gemstone.gemfire.cache.client.Pool.getQueryService](/releases/latest/javadoc/com/gemstone/gemfire/cache/client/Pool.html). +If you are writing a Java client to server query, use [org.apache.geode.cache.client.Pool.getQueryService](/releases/latest/javadoc/com/gemstone/gemfire/cache/client/Pool.html). If you are writing a native client to server query, use the [.NET API](/releases/latest/net_api/DotNetDocs/Index.html) or the [C++ API](/releases/latest/cpp_api/cppdocs/index.html). http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/getting_started/setup_classpath.html.md.erb ---------------------------------------------------------------------- diff --git a/getting_started/setup_classpath.html.md.erb b/getting_started/setup_classpath.html.md.erb index 0525b2c..c994d70 100644 --- a/getting_started/setup_classpath.html.md.erb +++ b/getting_started/setup_classpath.html.md.erb @@ -78,7 +78,7 @@ For example, to start up a Geode locator process using the LocatorLauncher API, ``` pre prompt# java -cp "path_to_product/lib/geode-dependencies.jar" -com.gemstone.gemfire.distributed.LocatorLauncher start locator1 +org.apache.geode.distributed.LocatorLauncher start locator1 <locator-launcher-options> ``` @@ -86,7 +86,7 @@ To start up a Geode server process using the ServerLauncher API: ``` pre prompt# java -cp "path_to_product/lib/geode-dependencies.jar:/path/to/your/applications/classes.jar" -com.gemstone.gemfire.distributed.ServerLauncher start server1 +org.apache.geode.distributed.ServerLauncher start server1 <server-launcher-options> ``` http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/disk_storage/disk_store_configuration_params.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/disk_storage/disk_store_configuration_params.html.md.erb b/managing/disk_storage/disk_store_configuration_params.html.md.erb index 3cad1a7..53ad195 100644 --- a/managing/disk_storage/disk_store_configuration_params.html.md.erb +++ b/managing/disk_storage/disk_store_configuration_params.html.md.erb @@ -4,7 +4,7 @@ title: Disk Store Configuration Parameters You define your disk stores by using the `gfsh create disk-store` command or in `<disk-store>` subelements of your cache declaration in `cache.xml`. All disk stores are available for use by all of your regions and queues. -These `<disk-store>` attributes and subelements have corresponding `gfsh create disk-store` command-line parameters as well as getter and setter methods in the `com.gemstone.gemfire.cache.DiskStoreFactory` and `com.gemstone.gemfire.cache.DiskStore` APIs. +These `<disk-store>` attributes and subelements have corresponding `gfsh create disk-store` command-line parameters as well as getter and setter methods in the `org.apache.geode.cache.DiskStoreFactory` and `org.apache.geode.cache.DiskStore` APIs. ## <a id="disk_store_configuration_params__section_77273B9B5EA54227A2D25682BD77BAC3" class="no-quick-link"></a>Disk Store Configuration Attributes and Elements http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/heap_use/heap_management.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/heap_use/heap_management.html.md.erb b/managing/heap_use/heap_management.html.md.erb index 1227de4..f3b90b7 100644 --- a/managing/heap_use/heap_management.html.md.erb +++ b/managing/heap_use/heap_management.html.md.erb @@ -60,7 +60,7 @@ When heap use passes the eviction threshold in either direction, the manager log When heap use exceeds the critical threshold, the manager logs an error-level message. Avoid exceeding the critical threshold. Once identified as critical, the Geode member becomes a read-only member that refuses cache updates for all of its regions, including incoming distributed updates. -For more information, see `com.gemstone.gemfire.cache.control.ResourceManager` in the online API documentation. +For more information, see `org.apache.geode.cache.control.ResourceManager` in the online API documentation. ## <a id="how_the_resource_manager_works__section_EA5E52E65923486488A71E3E6F0DE9DA" class="no-quick-link"></a>How Background Eviction Is Performed @@ -97,7 +97,7 @@ For the members where you want to activate the resource manager: ## <a id="configuring_resource_manager__section_4949882892DA46F6BB8588FA97037F45" class="no-quick-link"></a>Configure Geode for Heap LRU Management -The configuration terms used here are `cache.xml` elements and attributes, but you can also configure through `gfsh` and the `com.gemstone.gemfire.cache.control.ResourceManager` and `Region` APIs. +The configuration terms used here are `cache.xml` elements and attributes, but you can also configure through `gfsh` and the `org.apache.geode.cache.control.ResourceManager` and `Region` APIs. 1. When starting up your server, set `initial-heap` and `max-heap` to the same value. http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/heap_use/off_heap_management.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/heap_use/off_heap_management.html.md.erb b/managing/heap_use/off_heap_management.html.md.erb index 13b472d..0c8bf7c 100644 --- a/managing/heap_use/off_heap_management.html.md.erb +++ b/managing/heap_use/off_heap_management.html.md.erb @@ -118,7 +118,7 @@ supports off-heap options `--lock-memory`, `ââoff-heap-memory-size`, `ââ ## ResourceManager API -The `com.gemstone.gemfire.cache.control.ResourceManager` interface defines methods that support off-heap use: +The `org.apache.geode.cache.control.ResourceManager` interface defines methods that support off-heap use: - `public void setCriticalOffHeapPercentage(float Percentage)` - `public float getCriticalOffHeapPercentage()` http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/logging/logging_categories.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/logging/logging_categories.html.md.erb b/managing/logging/logging_categories.html.md.erb index d259962..f22a23d 100644 --- a/managing/logging/logging_categories.html.md.erb +++ b/managing/logging/logging_categories.html.md.erb @@ -137,11 +137,11 @@ These are the levels, in descending order, with sample output: ``` pre [warning 2008/06/09 13:12:31.833 PDT <main> tid=0x1] Unable to create a connection in the allowed time - com.gemstone.gemfire.cache.client.NoAvailableServersException - at com.gemstone.gemfire.cache.client.internal.pooling.ConnectionManagerImpl. + org.apache.geode.cache.client.NoAvailableServersException + at org.apache.geode.cache.client.internal.pooling.ConnectionManagerImpl. borrowConnection(ConnectionManagerImpl.java:166) . . . - com.gemstone.gemfire.internal.cache.LocalRegion.get(LocalRegion.java:1122 + org.apache.geode.internal.cache.LocalRegion.get(LocalRegion.java:1122 ) ``` http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/logging/logging_whats_next.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/logging/logging_whats_next.html.md.erb b/managing/logging/logging_whats_next.html.md.erb index d80309e..4ffda14 100644 --- a/managing/logging/logging_whats_next.html.md.erb +++ b/managing/logging/logging_whats_next.html.md.erb @@ -36,4 +36,4 @@ Search for lines that begin with these strings: ## <a id="logging_whats_next__section_32F26033A2134525BCC10F3A6C6FAD7B" class="no-quick-link"></a>Creating Your Own Log Messages -In addition to the system logs, you can add your own application logs from your Java code. For information on adding custom logging to your applications, see the online Java documentation for the `com.gemstone.gemfire.LogWriter` interface. Both system and application logging is output and stored according to your logging configuration settings. +In addition to the system logs, you can add your own application logs from your Java code. For information on adding custom logging to your applications, see the online Java documentation for the `org.apache.geode.LogWriter` interface. Both system and application logging is output and stored according to your logging configuration settings. http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/management/list_of_mbeans_full.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/management/list_of_mbeans_full.html.md.erb b/managing/management/list_of_mbeans_full.html.md.erb index 007e631..74fb2bd 100644 --- a/managing/management/list_of_mbeans_full.html.md.erb +++ b/managing/management/list_of_mbeans_full.html.md.erb @@ -29,7 +29,7 @@ You must configure the node to allow it to become a JMX Manager. See [Configurin | Object Name | GemFire:type=Member, service=Manager,member=<name-or-dist-member-id> | | Instances Per Node | 1 | -See the `com.gemstone.gemfire.management.ManagerMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.ManagerMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_14E3721DD0CF47D7AD8C742DFBE9FB9C__section_4D7A4C82DD974BB5A5E52B34A6D888B4" class="no-quick-link"></a>DistributedSystemMXBean @@ -50,7 +50,7 @@ This MBean also provides some MBean model navigation APIS. These APIs should be | Object Name | GemFire:type=Distributed,service=System | | Instances Per Node | 1 | -See the `com.gemstone.gemfire.management.DistributedSystemMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.DistributedSystemMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_14E3721DD0CF47D7AD8C742DFBE9FB9C__section_48384B091AB846E591F22EEA2770DD36" class="no-quick-link"></a>DistributedRegionMXBean @@ -65,7 +65,7 @@ System-wide aggregate MBean of a named region. It provides a high-level view of | Object Name | GemFire:type=Distributed,service=Region,name=<regionName> | | Instances Per Node | 0..N | -See the `com.gemstone.gemfire.management.DistributedRegionMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.DistributedRegionMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_14E3721DD0CF47D7AD8C742DFBE9FB9C__section_9E004D8AA3D24647A5C19CAA1879F0A4" class="no-quick-link"></a>DistributedLockServiceMXBean @@ -82,7 +82,7 @@ A named instance of DistributedLockService defines a space for locking arbitrary | Object Name | GemFire:type=Distributed,service=LockService,name=<dlsName> | | Instances Per Node | 0..N | -See the `com.gemstone.gemfire.management.DistributedLockServiceMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.DistributedLockServiceMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_48194A5BDF3F40F68E95A114DD702413" class="no-quick-link"></a>Managed Node MBeans @@ -115,7 +115,7 @@ See [MemberMXBean Notifications](list_of_mbean_notifications.html#reference_czt_ | Object Name | GemFire:type=Member,member=<name-or-dist-member-id> | | Instances Per Node | 1 | -See the `com.gemstone.gemfire.management.MemberMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.MemberMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_48194A5BDF3F40F68E95A114DD702413__section_7287A7560650426E9B8249E2D87CE55F" class="no-quick-link"></a>CacheServerMXBean @@ -132,7 +132,7 @@ See [CacheServerMXBean Notifications](list_of_mbean_notifications.html#cacheserv | Object Name | GemFire:type=Member,service=CacheServer,member=<name-or-dist-member-id> | | Instances Per Node | 1 | -See the `com.gemstone.gemfire.management.CacheServerMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.CacheServerMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_48194A5BDF3F40F68E95A114DD702413__section_577A666924E54352AF69294DC8DEFEBF" class="no-quick-link"></a>RegionMXBean @@ -147,7 +147,7 @@ Member's local view of region. | Object Name | GemFire:type=Member,service=Region,name=<regionName>,member=<name-or-dist-member-id> | | Instances Per Node | 0..N | -See the `com.gemstone.gemfire.management.RegionMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.RegionMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_48194A5BDF3F40F68E95A114DD702413__section_2F9F00081BB14CE0ADA251F5B6289BF2" class="no-quick-link"></a>LockServiceMXBean @@ -162,7 +162,7 @@ Represents a named instance of a LockService . Any number of LockServices can be | Object Name | GemFire:type=Member,service=LockService,name=<dlsName>,member=<name-or-dist-member-id> | | Instances Per Node | 0..N | -See the `com.gemstone.gemfire.management.LockServiceMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.LockServiceMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_48194A5BDF3F40F68E95A114DD702413__section_1F475F68E73B4EAE875BA40825E736C9" class="no-quick-link"></a>DiskStoreMXBean @@ -177,7 +177,7 @@ Represents a DiskStore object which provides disk storage for one or more region | Object Name | GemFire:type=Member,service=DiskStore,name=<name>,member=<name-or-dist-member-id> | | Instances Per Node | 0..N | -See the `com.gemstone.gemfire.management.DiskStoreMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.DiskStoreMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_48194A5BDF3F40F68E95A114DD702413__section_6A77030A15704BFEAEBBD7DB88266BF6" class="no-quick-link"></a>AsyncEventQueueMXBean @@ -192,7 +192,7 @@ An AsyncEventQueueMXBean provides access to an AsyncEventQueue, which represent | Object Name | GemFire:type=Member,service=AsyncEventQueue=<AsyncEventQueue> ,member=<name-or-dist-member-id> | | Instances Per Node | 0..N | -See the `com.gemstone.gemfire.management.AsyncEventQueueMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.AsyncEventQueueMXBean` JavaDocs for information on available MBean methods and attributes. ## <a id="topic_48194A5BDF3F40F68E95A114DD702413__section_BB83107990D346F39271ACCC14CB84A0" class="no-quick-link"></a>LocatorMXBean @@ -207,4 +207,4 @@ A LocatorMXBean represents a locator . | Object Name | GemFire:type=Member,service=Locator,port=<port>,member=<name-or-dist-member-id> | | Instances Per Node | 0..1 | -See the `com.gemstone.gemfire.management.LocatorMXBean` JavaDocs for information on available MBean methods and attributes. +See the `org.apache.geode.management.LocatorMXBean` JavaDocs for information on available MBean methods and attributes. http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/management/management_system_overview.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/management/management_system_overview.html.md.erb b/managing/management/management_system_overview.html.md.erb index 08a5979..33809b0 100644 --- a/managing/management/management_system_overview.html.md.erb +++ b/managing/management/management_system_overview.html.md.erb @@ -79,9 +79,9 @@ You can use the Geode management APIs to accomplish the following tasks: - View persistent member information such as disk store ID. - Browse region attributes. -See the JavaDocs for the `com.gemstone.gemfire.management` package for more details. +See the JavaDocs for the `org.apache.geode.management` package for more details. -You can also execute gfsh commands using the ManagementService API. See [Executing gfsh Commands through the Management API](gfsh_and_management_api.html#concept_451F0978285245E69C3E8DE795BD8635) and the JavaDocs for the `com.gemstone.gemfire.management.cli` package. +You can also execute gfsh commands using the ManagementService API. See [Executing gfsh Commands through the Management API](gfsh_and_management_api.html#concept_451F0978285245E69C3E8DE795BD8635) and the JavaDocs for the `org.apache.geode.management.cli` package. ## <a id="concept_1BAE2CE1146B4347ABD61F50B9F9781F__section_E69A93A6309E4747B52850D81FE1674E" class="no-quick-link"></a>Geode Management and Monitoring Tools http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/management/mm_overview.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/management/mm_overview.html.md.erb b/managing/management/mm_overview.html.md.erb index 43f280f..b21c7d1 100644 --- a/managing/management/mm_overview.html.md.erb +++ b/managing/management/mm_overview.html.md.erb @@ -60,7 +60,7 @@ See [Apache Geode Management and Monitoring](management_and_monitoring.html) ## Geode Java API -The Geode API provides a set of Java classes you can use to manage and monitor a distributed system. See the <span class="keyword apiname">com.gemstone.gemfire.management</span> package in the Geode JavaDocs . +The Geode API provides a set of Java classes you can use to manage and monitor a distributed system. See the <span class="keyword apiname">org.apache.geode.management</span> package in the Geode JavaDocs . ## Geode Pulse http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/management/programming_example.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/management/programming_example.html.md.erb b/managing/management/programming_example.html.md.erb index 6380788..45e4ac5 100644 --- a/managing/management/programming_example.html.md.erb +++ b/managing/management/programming_example.html.md.erb @@ -11,11 +11,11 @@ package quickstart; import java.util.Set; import javax.management.ObjectName; -import com.gemstone.gemfire.cache.Cache; -import com.gemstone.gemfire.cache.CacheFactory; -import com.gemstone.gemfire.distributed.DistributedMember; -import com.gemstone.gemfire.management.ManagementService; -import com.gemstone.gemfire.management.RegionMXBean; +import org.apache.geode.cache.Cache; +import org.apache.geode.cache.CacheFactory; +import org.apache.geode.distributed.DistributedMember; +import org.apache.geode.management.ManagementService; +import org.apache.geode.management.RegionMXBean; /** * Example of a JMX Manager Node. It first creates a cache. @@ -116,11 +116,11 @@ package quickstart; import java.io.BufferedReader; import java.io.InputStreamReader; -import com.gemstone.gemfire.cache.Cache; -import com.gemstone.gemfire.cache.CacheFactory; -import com.gemstone.gemfire.cache.Region; -import com.gemstone.gemfire.management.ManagementService; -import com.gemstone.gemfire.management.RegionMXBean; +import org.apache.geode.cache.Cache; +import org.apache.geode.cache.CacheFactory; +import org.apache.geode.cache.Region; +import org.apache.geode.management.ManagementService; +import org.apache.geode.management.RegionMXBean; /** * In this example of Managed Node. http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/monitor_tune/performance_controls.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/monitor_tune/performance_controls.html.md.erb b/managing/monitor_tune/performance_controls.html.md.erb index dcc91b7..79269a0 100644 --- a/managing/monitor_tune/performance_controls.html.md.erb +++ b/managing/monitor_tune/performance_controls.html.md.erb @@ -12,7 +12,7 @@ Before you begin, you should understand Apache Geode [Basic Configuration and Pr - **[Setting Cache Timeouts](../../managing/monitor_tune/performance_controls_setting_cache_timeouts.html)** - Cache timeout properties can modified through the gfsh `alter runtime` command (or declared in the `cache.xml` file) and can also be set through methods of the interface, `com.gemstone.gemfire.cache.Cache`. + Cache timeout properties can modified through the gfsh `alter runtime` command (or declared in the `cache.xml` file) and can also be set through methods of the interface, `org.apache.geode.cache.Cache`. - **[Controlling Socket Use](../../managing/monitor_tune/performance_controls_controlling_socket_use.html)** http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/monitor_tune/performance_controls_controlling_socket_use.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/monitor_tune/performance_controls_controlling_socket_use.html.md.erb b/managing/monitor_tune/performance_controls_controlling_socket_use.html.md.erb index ca98ace..4e04445 100644 --- a/managing/monitor_tune/performance_controls_controlling_socket_use.html.md.erb +++ b/managing/monitor_tune/performance_controls_controlling_socket_use.html.md.erb @@ -13,7 +13,7 @@ When conserve-sockets is set to false, each application thread uses a dedicated **Note:** When you have transactions operating on EMPTY, NORMAL or PARTITION regions, make sure that `conserve-sockets` is set to false to avoid distributed deadlocks. -You can override the `conserve-sockets` setting for individual threads. These methods are in `com.gemstone.gemfire.distributed.DistributedSystem`: +You can override the `conserve-sockets` setting for individual threads. These methods are in `org.apache.geode.distributed.DistributedSystem`: - `setThreadsSocketPolicy`. Sets the calling threadâs individual socket policy, overriding the policy set for the application as a whole. If set to true, the calling thread shares socket connections with other threads. If false, the calling thread has its own sockets. - `releaseThreadsSockets`. Frees any sockets held by the calling thread. Threads hold their own sockets only when conserve-sockets is false. Threads holding their own sockets can call this method to avoid holding the sockets until the socket-lease-time has expired. http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/monitor_tune/performance_controls_setting_cache_timeouts.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/monitor_tune/performance_controls_setting_cache_timeouts.html.md.erb b/managing/monitor_tune/performance_controls_setting_cache_timeouts.html.md.erb index f322017..bb84a5f 100644 --- a/managing/monitor_tune/performance_controls_setting_cache_timeouts.html.md.erb +++ b/managing/monitor_tune/performance_controls_setting_cache_timeouts.html.md.erb @@ -2,7 +2,7 @@ title: Setting Cache Timeouts --- -Cache timeout properties can modified through the gfsh `alter runtime` command (or declared in the `cache.xml` file) and can also be set through methods of the interface, `com.gemstone.gemfire.cache.Cache`. +Cache timeout properties can modified through the gfsh `alter runtime` command (or declared in the `cache.xml` file) and can also be set through methods of the interface, `org.apache.geode.cache.Cache`. To modify cache timeout properties, you can issue the following `gfsh alter runtime` command. For example: @@ -12,7 +12,7 @@ gfsh>alter runtime --search-timeout=150 The `--search-timeout` parameter specifies how long a netSearch operation can wait for data before timing out. The default is 5 minutes. You may want to change this based on your knowledge of the network load or other factors. -The next two configurations describe timeout settings for locking in regions with global scope. Locking operations can time out in two places: when waiting to obtain a lock (lock time out); and when holding a lock (lock lease time). Operations that modify objects in a global region use automatic locking. In addition, you can manually lock a global region and its entries through `com.gemstone.gemfire.cache.Region`. The explicit lock methods provided by the APIs allow you to specify a lock timeout parameter. The lock time out for implicit operations and the lock lease time for implicit and explicit operations are governed by these cache-wide settings: +The next two configurations describe timeout settings for locking in regions with global scope. Locking operations can time out in two places: when waiting to obtain a lock (lock time out); and when holding a lock (lock lease time). Operations that modify objects in a global region use automatic locking. In addition, you can manually lock a global region and its entries through `org.apache.geode.cache.Region`. The explicit lock methods provided by the APIs allow you to specify a lock timeout parameter. The lock time out for implicit operations and the lock lease time for implicit and explicit operations are governed by these cache-wide settings: ``` pre gfsh>alter runtime --lock-timeout=30 --lock-lease=60 http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/monitor_tune/sockets_and_gateways.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/monitor_tune/sockets_and_gateways.html.md.erb b/managing/monitor_tune/sockets_and_gateways.html.md.erb index 180ea1c..4910453 100644 --- a/managing/monitor_tune/sockets_and_gateways.html.md.erb +++ b/managing/monitor_tune/sockets_and_gateways.html.md.erb @@ -102,4 +102,4 @@ A client, server, gateway sender, or gateway receiver produces a SocketTimeoutEx Response: -Increase the default socket timeout setting for the member. This timeout is set separately for the client Pool and for the gateway sender and gateway receiver, either in the `cache.xml` file or through the API. For a client/server configuration, adjust the "read-timeout" value as described in [<pool>](../../reference/topics/client-cache.html#cc-pool) or use the `com.gemstone.gemfire.cache.client.PoolFactory.setReadTimeout` method. For a gateway sender or gateway receiver, see [WAN Configuration](../../reference/topics/elements_ref.html#topic_7B1CABCAD056499AA57AF3CFDBF8ABE3). +Increase the default socket timeout setting for the member. This timeout is set separately for the client Pool and for the gateway sender and gateway receiver, either in the `cache.xml` file or through the API. For a client/server configuration, adjust the "read-timeout" value as described in [<pool>](../../reference/topics/client-cache.html#cc-pool) or use the `org.apache.geode.cache.client.PoolFactory.setReadTimeout` method. For a gateway sender or gateway receiver, see [WAN Configuration](../../reference/topics/elements_ref.html#topic_7B1CABCAD056499AA57AF3CFDBF8ABE3). http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/region_compression/region_compression.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/region_compression/region_compression.html.md.erb b/managing/region_compression/region_compression.html.md.erb index c6b3298..d664a7b 100644 --- a/managing/region_compression/region_compression.html.md.erb +++ b/managing/region_compression/region_compression.html.md.erb @@ -73,7 +73,7 @@ To enable compression on your region, set the following region attribute in your <region name="compressedRegion" > <region-attributes data-policy="replicate" ... /> <Compressor> - <class-name>com.gemstone.gemfire.compression.SnappyCompressor</class-name> + <class-name>org.apache.geode.compression.SnappyCompressor</class-name> </Compressor> ... </region-attributes> @@ -88,7 +88,7 @@ Compression can be enabled during region creation using gfsh or programmatically Using gfsh: ``` pre -gfsh>create-region --name=âCompressedRegionâ --compressor=âcom.gemstone.gemfire.compression.SnappyCompressorâ; +gfsh>create-region --name=âCompressedRegionâ --compressor=âorg.apache.geode.compression.SnappyCompressorâ; ``` API: @@ -126,7 +126,7 @@ This example provides a custom Compressor implementation: ``` pre package com.mybiz.myproduct.compression; -import com.gemstone.gemfire.compression.Compressor; +import org.apache.geode.compression.Compressor; public class LZWCompressor implements Compressor { private final LZWCodec lzwCodec = new LZWCodec(); http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/security/authentication_examples.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/security/authentication_examples.html.md.erb b/managing/security/authentication_examples.html.md.erb index 9c75e61..a923679 100644 --- a/managing/security/authentication_examples.html.md.erb +++ b/managing/security/authentication_examples.html.md.erb @@ -17,7 +17,7 @@ These are the `gemfire.properties` file (or `gfsecurity.properties` file if you - Client: ``` pre - security-client-auth-init=com.gemstone.gemfire.security.templates.UserPasswordAuthInit.create + security-client-auth-init=org.apache.geode.security.templates.UserPasswordAuthInit.create security-username="username" security-password="password" ``` @@ -25,8 +25,8 @@ These are the `gemfire.properties` file (or `gfsecurity.properties` file if you - Server system members: ``` pre - security-peer-auth-init=com.gemstone.gemfire.security.templates.UserPasswordAuthInit.create - security-peer-authenticator=com.gemstone.gemfire.security.templates.LdapUserAuthenticator.create + security-peer-auth-init=org.apache.geode.security.templates.UserPasswordAuthInit.create + security-peer-authenticator=org.apache.geode.security.templates.LdapUserAuthenticator.create security-ldap-server="name of ldap server" security-ldap-basedn="ou=www, dc=xxx, dc=yyy, dc=zzz" ``` @@ -48,7 +48,7 @@ These are the `gemfire.properties` file (or `gfsecurity.properties` file if you - Client: ``` pre - security-client-auth-init=com.gemstone.gemfire.security.templates.PKCSAuthInit.create + security-client-auth-init=org.apache.geode.security.templates.PKCSAuthInit.create security-keystorepath="keystore path" security-alias="alias" security-keystorepass="keystore password" @@ -57,7 +57,7 @@ These are the `gemfire.properties` file (or `gfsecurity.properties` file if you - Server: ``` pre - security-client-authenticator=com.gemstone.gemfire.security.templates.PKCSAuthenticator.create + security-client-authenticator=org.apache.geode.security.templates.PKCSAuthenticator.create security-publickey-filepath="path and name of public key file" security-publickey-pass="password of public key file store on the server" ``` http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/security/how_authorization_works.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/security/how_authorization_works.html.md.erb b/managing/security/how_authorization_works.html.md.erb index 4a2a9b3..2dfe16e 100644 --- a/managing/security/how_authorization_works.html.md.erb +++ b/managing/security/how_authorization_works.html.md.erb @@ -9,7 +9,7 @@ Access rights can be checked before the client operation is performed and before <img src="../../images/security-4.gif" id="how_authorization_works__image_254428E85E8B47F9B558DA4C5DC02B93" class="image" /> The principal, which you associate with the client when it is authenticated, is used by the authorization plug-in to allow or disallow each operation. Geode security invokes this callback with the principal and the requested operation, and permits or bars the operation depending on the result of the callback. The callback also has access to the operation data, such as the key and value for a `put`, which you can use to determine authorization. In addition, you can program the callback to change some of the operation data, such as the value for a `put` or the operation result. -All client operations sent to the server can be authorized. The operations checked by the server are listed in `com.gemstone.gemfire.cache.operations.OperationContext.OperationCode`. +All client operations sent to the server can be authorized. The operations checked by the server are listed in `org.apache.geode.cache.operations.OperationContext.OperationCode`. **Note:** `Region` query shortcut methods are all sent to the server as `query` operations. http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/security/implementing_authentication.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/security/implementing_authentication.html.md.erb b/managing/security/implementing_authentication.html.md.erb index d62ae6f..0ca7bc6 100644 --- a/managing/security/implementing_authentication.html.md.erb +++ b/managing/security/implementing_authentication.html.md.erb @@ -14,7 +14,7 @@ Use the following procedure to implement authentication in your Geode applicatio - Obtain the properties dynamically in the `AuthInitialize.getCredentials` method. 3. For joining members, program and configure the credentials initialization plug-in: - 1. Create an implementation of the Geode `com.gemstone.gemfire.security.AuthInitialize` interface. + 1. Create an implementation of the Geode `org.apache.geode.security.AuthInitialize` interface. 1. Program a public static method to return an instance of the class. 2. Program the `getCredentials` method to create all properties required by the `Authorize` method via the member's credentials. @@ -37,7 +37,7 @@ Use the following procedure to implement authentication in your Geode applicatio 4. For all members, set any additional `gemfire.properties` (or `gfsecurity.properties` file if you are creating a special restricted access file for security configuration) `security-*` properties required by your `AuthInitialize` implementation. 4. For authorizing members, program and configure the credentials authorization plug-in: - 1. Implement the Geode `com.gemstone.gemfire.security.Authenticator` interface: + 1. Implement the Geode `org.apache.geode.security.Authenticator` interface: 1. Program a public static, zero-argument method to return an instance of the class. 2. Program the `authenticate` method to authenticate the credentials and return a `java.security.Principal` object. http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/security/implementing_authorization.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/security/implementing_authorization.html.md.erb b/managing/security/implementing_authorization.html.md.erb index 988ae87..5c68d02 100644 --- a/managing/security/implementing_authorization.html.md.erb +++ b/managing/security/implementing_authorization.html.md.erb @@ -8,7 +8,7 @@ To set up authorized access control for the cache: 1. Determine the degree of control you want over client access to the server cache 2. Program and configure the authorization plug-in: - 1. Create an implementation of the Geode `com.gemstone.gemfire.security.AccessControl` interface + 1. Create an implementation of the Geode `org.apache.geode.security.AccessControl` interface 1. Program a public static method to return an instance of the class. 2. Program the `init` method to store all properties required by the `AccessControl.authorizeOperation` method at the time the client makes its connection to the server. **Note:** http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/statistics/application_defined_statistics.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/statistics/application_defined_statistics.html.md.erb b/managing/statistics/application_defined_statistics.html.md.erb index 7c7e29f..8a4743b 100644 --- a/managing/statistics/application_defined_statistics.html.md.erb +++ b/managing/statistics/application_defined_statistics.html.md.erb @@ -5,7 +5,7 @@ title: Application-Defined and Custom Statistics Geode includes interfaces for defining and maintaining your own statistics. <a id="application_defined_statistics__section_88C31FA62A194947BF71AD54B5F9BAB3"></a> -The Geode package, `com.gemstone.gemfire`, includes the following interfaces for defining and maintaining your own statistics: +The Geode package, `org.apache.geode`, includes the following interfaces for defining and maintaining your own statistics: - **StatisticDescriptor**. Describes an individual statistic. Each statistic has a name and information on the statistic it holds, such as its class type (long, int, etc.) and whether it is a counter that always increments, or a gauge that can vary in any manner. - **StatisticsType**. Logical type that holds a list of `StatisticDescriptors` and provides access methods to them. The `StatisticDescriptors` contained by a `StatisticsType` are each assigned a unique ID within the list. `StatisticsType` is used to create a `Statistics` instance. http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/troubleshooting/diagnosing_system_probs.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/troubleshooting/diagnosing_system_probs.html.md.erb b/managing/troubleshooting/diagnosing_system_probs.html.md.erb index e5577bf..1e71ace 100644 --- a/managing/troubleshooting/diagnosing_system_probs.html.md.erb +++ b/managing/troubleshooting/diagnosing_system_probs.html.md.erb @@ -42,17 +42,17 @@ Exception in thread "main" java.lang.RuntimeException: An IO error occurred whil starting a Locator in C:\devel\gfcache\locator\locator on 192.0.2.0[10999]: Network is unreachable; port (10999) is not available on 192.0.2.0. at -com.gemstone.gemfire.distributed.LocatorLauncher.start(LocatorLauncher.java:622) +org.apache.geode.distributed.LocatorLauncher.start(LocatorLauncher.java:622) at -com.gemstone.gemfire.distributed.LocatorLauncher.run(LocatorLauncher.java:513) +org.apache.geode.distributed.LocatorLauncher.run(LocatorLauncher.java:513) at -com.gemstone.gemfire.distributed.LocatorLauncher.main(LocatorLauncher.java:188) +org.apache.geode.distributed.LocatorLauncher.main(LocatorLauncher.java:188) Caused by: java.net.BindException: Network is unreachable; port (10999) is not available on 192.0.2.0. at -com.gemstone.gemfire.distributed.AbstractLauncher.assertPortAvailable(AbstractLauncher.java:136) +org.apache.geode.distributed.AbstractLauncher.assertPortAvailable(AbstractLauncher.java:136) at -com.gemstone.gemfire.distributed.LocatorLauncher.start(LocatorLauncher.java:596) +org.apache.geode.distributed.LocatorLauncher.start(LocatorLauncher.java:596) ... ``` @@ -115,14 +115,14 @@ Response: System member startup fails with an error like one of these: ``` pre -Exception in thread "main" com.gemstone.gemfire.cache.CacheXmlException: +Exception in thread "main" org.apache.geode.cache.CacheXmlException: While reading Cache XML file:/C:/gemfire/client_cache.xml. Error while parsing XML, caused by org.xml.sax.SAXParseException: Document root element "client-cache", must match DOCTYPE root "cache". ``` ``` pre -Exception in thread "main" com.gemstone.gemfire.cache.CacheXmlException: +Exception in thread "main" org.apache.geode.cache.CacheXmlException: While reading Cache XML file:/C:/gemfire/cache.xml. Error while parsing XML, caused by org.xml.sax.SAXParseException: Document root element "cache", must match DOCTYPE root "client-cache". @@ -199,7 +199,7 @@ Response: Use a partitioned or replicate data-policy for your server regions. Th In partitioned regions that are persisted to disk, if you have any members offline, the partitioned region will still be available but may have some buckets represented only in offline disk stores. In this case, methods that access the bucket entries return a PartitionOfflineException, similar to this: ``` pre -com.gemstone.gemfire.cache.persistence.PartitionOfflineException: +org.apache.geode.cache.persistence.PartitionOfflineException: Region /__PR/_B__root_partitioned__region_7 has persistent data that is no longer online stored at these locations: [/192.0.2.1:/export/straw3/users/jpearson/bugfix_Apr10/testCL/hostB/backupDirectory @@ -247,7 +247,7 @@ The process may be hitting its virtual address space limits. The virtual address ## <a id="diagnosing_system_probs__section_B49BD03F4CA241C7BED4A2C4D5936A7A" class="no-quick-link"></a>PartitionedRegionDistributionException -The com.gemstone.gemfire.cache.PartitionedRegionDistributionException appears when Geode fails after many attempts to complete a distributed operation. This exception indicates that no data store member can be found to perform a destroy, invalidate, or get operation. +The org.apache.geode.cache.PartitionedRegionDistributionException appears when Geode fails after many attempts to complete a distributed operation. This exception indicates that no data store member can be found to perform a destroy, invalidate, or get operation. Response: @@ -257,7 +257,7 @@ Response: ## <a id="diagnosing_system_probs__section_7DE15A6C99974821B6CA418BC2AF98F1" class="no-quick-link"></a>PartitionedRegionStorageException -The com.gemstone.gemfire.cache.PartitionedRegionStorageException appears when Geode canât create a new entry. This exception arises from a lack of storage space for put and create operations or for get operations with a loader. PartitionedRegionStorageException often indicates data loss or impending data loss. +The org.apache.geode.cache.PartitionedRegionStorageException appears when Geode canât create a new entry. This exception arises from a lack of storage space for put and create operations or for get operations with a loader. PartitionedRegionStorageException often indicates data loss or impending data loss. The text string indicates the cause of the exception, as in these examples: @@ -299,7 +299,7 @@ A client and server produces a SocketTimeoutException when it stops waiting for Response: -Increase the default socket timeout setting for the member. This timeout is set separately for the client Pool. For a client/server configuration, adjust the "read-timeout" value as described in [<pool>](../../reference/topics/client-cache.html#cc-pool) or use the `com.gemstone.gemfire.cache.client.PoolFactory.setReadTimeout` method. +Increase the default socket timeout setting for the member. This timeout is set separately for the client Pool. For a client/server configuration, adjust the "read-timeout" value as described in [<pool>](../../reference/topics/client-cache.html#cc-pool) or use the `org.apache.geode.cache.client.PoolFactory.setReadTimeout` method. ## <a id="diagnosing_system_probs__section_8C7CB2EA0A274DAF90083FECE0BF3B1F" class="no-quick-link"></a>Member logs ForcedDisconnectException, Cache and DistributedSystem forcibly closed http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/troubleshooting/recovering_from_p2p_crashes.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/troubleshooting/recovering_from_p2p_crashes.html.md.erb b/managing/troubleshooting/recovering_from_p2p_crashes.html.md.erb index 8876219..47e55df 100644 --- a/managing/troubleshooting/recovering_from_p2p_crashes.html.md.erb +++ b/managing/troubleshooting/recovering_from_p2p_crashes.html.md.erb @@ -113,7 +113,7 @@ successfully allocated = 0 number needed = 2 Data stores available: Exception: ``` pre -com.gemstone.gemfire.cache.PartitionedRegionStorageException: Unable to find any members to +org.apache.geode.cache.PartitionedRegionStorageException: Unable to find any members to host a bucket in the partitioned region. ``` http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/managing/troubleshooting/system_failure_and_recovery.html.md.erb ---------------------------------------------------------------------- diff --git a/managing/troubleshooting/system_failure_and_recovery.html.md.erb b/managing/troubleshooting/system_failure_and_recovery.html.md.erb index df213c6..603fd5f 100644 --- a/managing/troubleshooting/system_failure_and_recovery.html.md.erb +++ b/managing/troubleshooting/system_failure_and_recovery.html.md.erb @@ -157,7 +157,7 @@ It is likely that all processes using the locators will exit with the same messa Alert: ``` pre -Membership service failure: Channel closed: com.gemstone.gemfire.ForcedDisconnectException: +Membership service failure: Channel closed: org.apache.geode.ForcedDisconnectException: There are no processes eligible to be group membership coordinator (last coordinator left view) ``` @@ -173,7 +173,7 @@ The operator should examine the locator processes and logs, and restart the loca Alert: ``` pre -Membership service failure: Channel closed: com.gemstone.gemfire.ForcedDisconnectException: +Membership service failure: Channel closed: org.apache.geode.ForcedDisconnectException: There are no processes eligible to be group membership coordinator (all eligible coordinators are suspect) ``` @@ -189,7 +189,7 @@ The operator should examine the locator processes and logs, and restart the loca Alert: ``` pre -Membership service failure: Channel closed: com.gemstone.gemfire.ForcedDisconnectException: +Membership service failure: Channel closed: org.apache.geode.ForcedDisconnectException: Unable to contact any locators and network partition detection is enabled ``` @@ -204,7 +204,7 @@ The operator should examine the locator processes and logs, and restart the loca Alert: ``` pre -Membership service failure: Channel closed: com.gemstone.gemfire.ForcedDisconnectException: +Membership service failure: Channel closed: org.apache.geode.ForcedDisconnectException: Disconnected as a slow-receiver ``` @@ -252,7 +252,7 @@ The operator can turn this off by setting the system property gemfire.disable-sa Alert: ``` pre -Membership service failure: Channel closed: com.gemstone.gemfire.ForcedDisconnectException: +Membership service failure: Channel closed: org.apache.geode.ForcedDisconnectException: This member has been forced out of the Distributed System. Please consult GemFire logs to find the reason. ``` http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/23e2f5ce/reference/topics/cache_xml.html.md.erb ---------------------------------------------------------------------- diff --git a/reference/topics/cache_xml.html.md.erb b/reference/topics/cache_xml.html.md.erb index add0e29..a1969d4 100644 --- a/reference/topics/cache_xml.html.md.erb +++ b/reference/topics/cache_xml.html.md.erb @@ -8,7 +8,7 @@ This section documents the `cache.xml` sub-elements used for Geode server config For Geode client configuration, see [<client-cache> Element Reference](client-cache.html#cc-client-cache). -**API**:`com.gemstone.gemfire.cache.CacheFactory` +**API**:`org.apache.geode.cache.CacheFactory` <a id="cache_xml_cache__table_B079C5A320194B3A98AD82DDB67DA43D"></a> @@ -126,7 +126,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` ## <a id="dynamic-region-factory" class="no-quick-link"></a><dynamic-region-factory> -The `<dynamic-region-factory>` element configures a dynamic region factory for this cache. You can use this element to dynamically create regions in your application code. Use the <span class="keyword apiname">createDynamicRegion()</span> method of the <span class="keyword apiname">com.gemstone.gemfire.cache.DynamicRegionFactory</span> class in your Java code to dynamically create regions. +The `<dynamic-region-factory>` element configures a dynamic region factory for this cache. You can use this element to dynamically create regions in your application code. Use the <span class="keyword apiname">createDynamicRegion()</span> method of the <span class="keyword apiname">org.apache.geode.cache.DynamicRegionFactory</span> class in your Java code to dynamically create regions. **Note:** You can not use this element to dynamically create *partitioned* regions. @@ -137,7 +137,7 @@ The optional `<disk-dir>` sub-element specifies the directory to store the persi Set the `pool-name` attribute to set the name of the connection pool used by client applications in a client/server cache configuration. Do not specify the `pool-name` attribute in servers or peers. -**API:** `com.gemstone.gemfire.cache.DynamicRegionFactory` +**API:** `org.apache.geode.cache.DynamicRegionFactory` <a id="dynamic-region-factory__table_6B7271DE968946CC9757FE241E9F872C"></a> @@ -201,7 +201,7 @@ Specifies a region or disk store's disk directory. Configures a queue for sending region events to an AsyncEventListener implementation (for example, for write-behind event handling). -**API:** `com.gemstone.gemfire.cache.asyncqueue.AsyncEventQueue` +**API:** `org.apache.geode.cache.asyncqueue.AsyncEventQueue` <a id="async-event-queue__table_5CEA4FE481D741E4913C098B67735714"></a> @@ -326,7 +326,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` ``` pre <gateway-event-filter> - <class-name>com.gemstone.gemfire.util.SampleEventFilter</class-name> + <class-name>org.apache.geode.util.SampleEventFilter</class-name> <parameter name="param1"> <string>"value1"</string> </parameter> @@ -343,7 +343,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` ``` pre <gateway-event-substitution-filter> - <class-name>com.gemstone.gemfire.util.SampleEventSubstitutionFilter</class-name> + <class-name>org.apache.geode.util.SampleEventSubstitutionFilter</class-name> <parameter name="param1"> <string>"value1"</string> </parameter> @@ -356,7 +356,7 @@ An AsyncEventListener receives callbacks for events that change region data. You Specify the Java class and its initialization parameters with the `<class-name>` and `<parameter>` sub-elements. See [<class-name> and <parameter>](#class-name_parameter). -**API:** `com.gemstone.gemfire.cache.asyncqueue.AsyncEventListener` +**API:** `org.apache.geode.cache.asyncqueue.AsyncEventListener` **Example:** @@ -381,9 +381,9 @@ Specify the Java class and its initialization parameters with the `<class-name>` Configures the cache to serve region data to clients in a client/server caching system. This element indicates the port the server listens on for client communication. -The `cacheserver` process uses only `cache.xml` configuration. For application servers, you can set the same configuration properties using the `com.gemstone.gemfire.cache.server.CacheServer` and `com.gemstone.gemfire.cache.Cache` interfaces. For detailed information, see the online Java API documentation. +The `cacheserver` process uses only `cache.xml` configuration. For application servers, you can set the same configuration properties using the `org.apache.geode.cache.server.CacheServer` and `org.apache.geode.cache.Cache` interfaces. For detailed information, see the online Java API documentation. -**API:** `com.gemstone.gemfire.cache.server.CacheServer` +**API:** `org.apache.geode.cache.server.CacheServer` <a id="cache-server__table_78A30804A5394C2AA190579C8A1E22D8"></a> @@ -534,7 +534,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` **Default:** If this is not defined, the default Geode load probe is used. -**API:** `com.gemstone.gemfire.cache.server.setLoadProbe` +**API:** `org.apache.geode.cache.server.setLoadProbe` **Example:** @@ -550,7 +550,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` Use for client caches. Defines a client's server pool used to communicate with servers running in a different distributed system. -**API:** `com.gemstone.gemfire.cache.client.PoolFactory` +**API:** `org.apache.geode.cache.client.PoolFactory` <a id="pool__table_14D991AC65A6414BB71EF7AC67B59771"></a> @@ -714,7 +714,7 @@ Addresses and ports of the locators to connect to. You can define multiple locat **Note:** Provide a locator list or `server` list, but not both. -**API:** `com.gemstone.gemfire.distributed.LocatorLauncher` +**API:** `org.apache.geode.distributed.LocatorLauncher` <a id="locator__table_10BEB4E1383B475795ED4E290676E058"></a> @@ -743,7 +743,7 @@ Provide a server list or `locator` list, but not both. **Default:** -**API:** `com.gemstone.gemfire.distributed.ServerLauncher` +**API:** `org.apache.geode.distributed.ServerLauncher` <a id="server__table_BD0B19AA44FF4CA68BBBC785E46E03F1"></a> @@ -770,7 +770,7 @@ Defines a pool of one or more disk stores, which can be used by regions, and cli **Default:** The cache default disk store, named "DEFAULT", is used when disk is used but no disk store is named. -**API:** `com.gemstone.gemfire.cache.DiskStore` +**API:** `org.apache.geode.cache.DiskStore` <a id="disk-store__table_C90DEC71FBD74C2F98E5447E961E899F"></a> @@ -908,7 +908,7 @@ Specifies a region or disk store's disk directory. Specifies the configuration for the Portable Data eXchange (PDX) method of serialization. -**API:** `com.gemstone.gemfire.cache.CacheFactory.setPdxReadSerialized`, `setPdxDiskStore`, `setPdxPersistent`, `setPdxIgnoreUnreadFields` and `com.gemstone.gemfire.cache.ClientCacheFactory.setPdxReadSerialized`, `setPdxDiskStore`, `setPdxPersistent`, `setPdxIgnoreUnreadFields` +**API:** `org.apache.geode.cache.CacheFactory.setPdxReadSerialized`, `setPdxDiskStore`, `setPdxPersistent`, `setPdxIgnoreUnreadFields` and `org.apache.geode.cache.ClientCacheFactory.setPdxReadSerialized`, `setPdxDiskStore`, `setPdxPersistent`, `setPdxIgnoreUnreadFields` <a id="pdx__table_DE49C41CAD444DA9B01F055C401920BF"></a> @@ -928,7 +928,7 @@ Specifies the configuration for the Portable Data eXchange (PDX) method of seria <pdx persistent="true" disk-store-name="myDiskStore"> <pdx-serializer> <class-name> - com.gemstone.gemfire.pdx.ReflectionBasedAutoSerializer + org.apache.geode.pdx.ReflectionBasedAutoSerializer </class-name> <parameter name="classes"> <string>com.company.domain.DomainObject</string>> @@ -947,7 +947,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` **Default:** -**API:** `com.gemstone.gemfire.cache.CacheFactory.setPdxSerializer` +**API:** `org.apache.geode.cache.CacheFactory.setPdxSerializer` **Example:** @@ -966,7 +966,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` Specifies a region attributes template that can be named (by `id`) and referenced (by `refid`) later in the `cache.xml` and through the API. -**API:** `com.gemstone.gemfire.cache.RegionFactory` or `com.gemstone.gemfire.cache.ClientRegionFactory` +**API:** `org.apache.geode.cache.RegionFactory` or `org.apache.geode.cache.ClientRegionFactory` <a id="region-attributes__table_028B4DC4FB72488AB6359AAA13E0B5B0"></a> @@ -1298,7 +1298,7 @@ Specifies a region attributes template that can be named (by `id`) and reference </tr> <tr class="even"> <td>statistics-enabled</td> -<td>Boolean specifying whether to gather statistics on the region. Must be true to use expiration on the region. Geode provides a standard set of statistics for cached regions and region entries, which give you information for fine-tuning your distributed system. Unlike other Geode statistics, statistics for local and distributed regions are not archived and cannot be charted. They are kept in instances of <code class="ph codeph">com.gemstone.gemfire.cache.CacheStatistics</code> and made available through the region and its entries through the <code class="ph codeph">Region.getStatistics</code> and <code class="ph codeph">Region.Entry.getStatistics</code> methods. +<td>Boolean specifying whether to gather statistics on the region. Must be true to use expiration on the region. Geode provides a standard set of statistics for cached regions and region entries, which give you information for fine-tuning your distributed system. Unlike other Geode statistics, statistics for local and distributed regions are not archived and cannot be charted. They are kept in instances of <code class="ph codeph">org.apache.geode.cache.CacheStatistics</code> and made available through the region and its entries through the <code class="ph codeph">Region.getStatistics</code> and <code class="ph codeph">Region.Entry.getStatistics</code> methods. <p><strong>API:</strong> <code class="ph codeph">setStatisticsEnabled</code></p> <p><strong>Example:</strong></p> <pre class="pre codeblock language-xml"><code><region-attributes @@ -1354,7 +1354,7 @@ Set the constraint in every cache where you create or update the region entries. **Default:** not set -**API:** `com.gemstone.gemfire.cache.RegionFactory.setKeyConstraint` +**API:** `org.apache.geode.cache.RegionFactory.setKeyConstraint` **Example:** @@ -1375,7 +1375,7 @@ Set the constraint in every cache where you create or update the region entries. **Default:** not set -**API:** `com.gemstone.gemfire.cache.RegionFactory.setValueConstraint` +**API:** `org.apache.geode.cache.RegionFactory.setValueConstraint` **Example:** @@ -1393,7 +1393,7 @@ Expiration setting that specifies how long the region can remain in the cache wi **Default:** not set - no expiration of this type -**API:** `com.gemstone.gemfire.cache.RegionFactory.setRegionTimeToLive` +**API:** `org.apache.geode.cache.RegionFactory.setRegionTimeToLive` **Example:** @@ -1484,11 +1484,11 @@ Select one of the following expiration actions: ## <a id="custom-expiry" class="no-quick-link"></a><custom-expiry> -Specifies the custom class that implements `com.gemstone.gemfire.cache.CustomExpiry`. You define this class in order to override the region-wide settings for specific entries. See [Configure Data Expiration](../../developing/expiration/configuring_data_expiration.html) for an example. +Specifies the custom class that implements `org.apache.geode.cache.CustomExpiry`. You define this class in order to override the region-wide settings for specific entries. See [Configure Data Expiration](../../developing/expiration/configuring_data_expiration.html) for an example. Specify the Java class and its initialization parameters with the `<class-name>` and `<parameter>` sub-elements. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setCustomEntryIdleTimeout`, `setCustomeEntryTimeToLive` +**API:** `org.apache.geode.cache.RegionFactory.setCustomEntryIdleTimeout`, `setCustomeEntryTimeToLive` **Example:** @@ -1516,7 +1516,7 @@ To ensure reliable read behavior across the partitioned region, use `region-time **Default:** not set - no expiration of this type -**API:** `com.gemstone.gemfire.cache.RegionFactory.setRegionIdleTimeout` +**API:** `org.apache.geode.cache.RegionFactory.setRegionIdleTimeout` **Example:** @@ -1606,11 +1606,11 @@ Select one of the following expiration actions: ## <a id="region-idle-time_custom-expiry" class="no-quick-link"></a><custom-expiry> -Specifies the custom class that implements `com.gemstone.gemfire.cache.CustomExpiry`. You define this class in order to override the region-wide settings for specific entries. See [Configure Data Expiration](../../developing/expiration/configuring_data_expiration.html) for an example. +Specifies the custom class that implements `org.apache.geode.cache.CustomExpiry`. You define this class in order to override the region-wide settings for specific entries. See [Configure Data Expiration](../../developing/expiration/configuring_data_expiration.html) for an example. Specify the Java class and its initialization parameters with the `<class-name>` and `<parameter>` sub-elements. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setCustomEntryIdleTimeout`, `setCustomeEntryTimeToLive` +**API:** `org.apache.geode.cache.RegionFactory.setCustomEntryIdleTimeout`, `setCustomeEntryTimeToLive` **Example:** @@ -1635,7 +1635,7 @@ Expiration setting that specifies how long the regionâs entries can remain in **Default:** not set - no expiration of this type. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setEntryTimeToLive` +**API:** `org.apache.geode.cache.RegionFactory.setEntryTimeToLive` **Example:** @@ -1726,11 +1726,11 @@ Select one of the following expiration actions: ## <a id="entry-time-to-live_custom_expiry" class="no-quick-link"></a><custom-expiry> -Specifies the custom class that implements `com.gemstone.gemfire.cache.CustomExpiry`. You define this class in order to override the region-wide settings for specific entries. See [Configure Data Expiration](../../developing/expiration/configuring_data_expiration.html) for an example. +Specifies the custom class that implements `org.apache.geode.cache.CustomExpiry`. You define this class in order to override the region-wide settings for specific entries. See [Configure Data Expiration](../../developing/expiration/configuring_data_expiration.html) for an example. Specify the Java class and its initialization parameters with the `<class-name>` and `<parameter>` sub-elements. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setCustomEntryIdleTimeout`, `setCustomeEntryTimeToLive` +**API:** `org.apache.geode.cache.RegionFactory.setCustomEntryIdleTimeout`, `setCustomeEntryTimeToLive` **Example:** @@ -1756,7 +1756,7 @@ Expiration setting that specifies how long the regionâs entries can remain in **Note:** To ensure reliable read behavior across the partitioned region, use `entry-time-to-live` for entry expiration instead of this setting. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setEntryIdleTimeout` +**API:** `org.apache.geode.cache.RegionFactory.setEntryIdleTimeout` **Example:** @@ -1848,11 +1848,11 @@ Select one of the following expiration actions: ## <a id="entry-idle-time_custom-expiry" class="no-quick-link"></a><custom-expiry> -Specifies the custom class that implements `com.gemstone.gemfire.cache.CustomExpiry`. You define this class in order to override the region-wide settings for specific entries. See [Configure Data Expiration](../../developing/expiration/configuring_data_expiration.html) for an example. +Specifies the custom class that implements `org.apache.geode.cache.CustomExpiry`. You define this class in order to override the region-wide settings for specific entries. See [Configure Data Expiration](../../developing/expiration/configuring_data_expiration.html) for an example. Specify the Java class and its initialization parameters with the `<class-name>` and `<parameter>` sub-elements. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setCustomEntryIdleTimeout`, `setCustomeEntryTimeToLive` +**API:** `org.apache.geode.cache.RegionFactory.setCustomEntryIdleTimeout`, `setCustomeEntryTimeToLive` **Example:** @@ -1878,7 +1878,7 @@ Defines the region as partitioned and controls partitioning behavior. This is se **Note:** With the exception of `local-max-memory`, all members defining a partitioned region must use the same partition attribute settings. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setPartitionAttributes` +**API:** `org.apache.geode.cache.RegionFactory.setPartitionAttributes` <a id="partition-attributes__table_5CB4AC52DDA94E60A2B8325BA31E1253"></a> @@ -1908,7 +1908,7 @@ With the exception of `local-max-memory`, all members defining a partitioned reg Describes a custom PartitionResolver for a region. -**API:** `com.gemstone.gemfire.cache.PartitionAttributesFactory.setPartitionResolver` +**API:** `org.apache.geode.cache.PartitionAttributesFactory.setPartitionResolver` Specify the Java class and its initialization parameters with the `<class-name>` and `<parameter>` sub-elements. See [<class-name> and <parameter>](#class-name_parameter). @@ -1941,7 +1941,7 @@ Defines a custom PartitionListener for a partitioned region. Specify the Java class and its initialization parameters with the `<class-name>` and `<parameter>` sub-elements. See [<class-name> and <parameter>](#class-name_parameter). -**API:** `com.gemstone.gemfire.cache.PartitionAttributesFactory.PartitionListener` +**API:** `org.apache.geode.cache.PartitionAttributesFactory.PartitionListener` **Example:** @@ -1960,7 +1960,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` Describes a partition in a Fixed Partitioned Region. -**API:** `com.gemstone.gemfire.cache.PartitionAttributesFactory.addFixedPartitionAttributes` +**API:** `org.apache.geode.cache.PartitionAttributesFactory.addFixedPartitionAttributes` <a id="fixed-partition-attributes__table_E3929FDFD5A24946919936F67D6DE46E"></a> @@ -1998,7 +1998,7 @@ Describes a partition in a Fixed Partitioned Region. Establishes reliability requirements and behavior for a region. Use this to configure the region to require one or more membership roles to be running in the system for reliable access to the region. You can set up your own roles, such as producer or backup, specifying each role as a string. Membership attributes have no effect unless one or more required roles are specified. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setMembershipAttributes` +**API:** `org.apache.geode.cache.RegionFactory.setMembershipAttributes` <a id="membership-attributes__table_EBF62709899C48CFA1D2032656F95D0F"></a> @@ -2088,7 +2088,7 @@ Specifies how the region is affected by resumption of reliability when one or mo Specifies a role that is required for reliable access to the region. -**API:** `com.gemstone.gemfire.cache.MembershipAttributes` +**API:** `org.apache.geode.cache.MembershipAttributes` <a id="required-role__table_8DE73CB4967F4906ACEF6FFFB91186B7"></a> @@ -2115,7 +2115,7 @@ Specifies subscriber requirements and behavior for the region. There is one subs **Note:** The interest policy determines which events are delivered, but the `data-policy` determines how the events are applied to the cache. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setSubscriptionAttributes` +**API:** `org.apache.geode.cache.RegionFactory.setSubscriptionAttributes` <a id="subscription-attributes__table_63C8ADF9549740BCA4CA8F1CFB7CD75F"></a> @@ -2173,7 +2173,7 @@ An event-handler plug-in that allows you to program for cache misses. At most, o For partitioned regions, if you want to have a cache loader, install an instance of the cache loader in every data store. Partitioned regions support partitioned loading, where each cache loader loads only the data entries in the local member. If data redundancy is configured, data is loaded only if the local member holds the primary copy. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setCacheLoader` +**API:** `org.apache.geode.cache.RegionFactory.setCacheLoader` **Example:** @@ -2189,7 +2189,7 @@ For partitioned regions, if you want to have a cache loader, install an instance An event-handler plug-in that allows you to receive before-event notification for changes to the region and its entries. It also has the ability to abort events. At most, one cache writer can be defined in each member for the region. A cache writer may be invoked remotely from other members that have the region defined. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setCacheWriter` +**API:** `org.apache.geode.cache.RegionFactory.setCacheWriter` **Example:** @@ -2207,7 +2207,7 @@ An event-handler plug-in that receives after-event notification of changes to th Specify the Java class for the cache listener and its initialization parameters with the `<class-name>` and `<parameter>` sub-elements. See [<class-name> and <parameter>](#class-name_parameter). -**API:** `com.gemstone.gemfire.cache.RegionFactory.addCacheListener` +**API:** `org.apache.geode.cache.RegionFactory.addCacheListener` **Example:** @@ -2244,7 +2244,7 @@ Specifies whether and how to control a regionâs size. Size is controlled by re **Default:** Uses the lru-entry-count algorithm. -**API:** `com.gemstone.gemfire.cache.RegionFactory.setEvictionAttributes` +**API:** `org.apache.geode.cache.RegionFactory.setEvictionAttributes` **Example:** @@ -2633,7 +2633,7 @@ Defines a region in the cache. See [<region-attributes>](#region-attribute **Default:** -**API:** `com.gemstone.gemfire.cache.RegionFactory` or `com.gemstone.gemfire.cache.ClientRegionFactory` +**API:** `org.apache.geode.cache.RegionFactory` or `org.apache.geode.cache.ClientRegionFactory` <a id="region__table_4D95B5BF161844CE8DE2E11A3ED40041"></a> @@ -2674,7 +2674,7 @@ Describes an index to be created on a region. The index node, if any, should all **Default:** -**API:** `com.gemstone.gemfire.cache.query.QueryService.createIndex, createKeyIndex, createHashIndex` +**API:** `org.apache.geode.cache.query.QueryService.createIndex, createKeyIndex, createHashIndex` <a id="index__table_43625CFF95114DADB2F07052F3743BCC"></a> @@ -2717,7 +2717,7 @@ An "entry" element describes an entry to be added to a region. Note that if an e **Default:** -**API:** `com.gemstone.gemfire.cache.Region.create`, `put`, `get`, `putAll`, `getAll` +**API:** `org.apache.geode.cache.Region.create`, `put`, `get`, `putAll`, `getAll` **Example:** @@ -2768,7 +2768,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` ``` pre <parameter name="cacheserver"> <declarable> - <class-name>com.gemstone.gemfire.addon.cache.CacheServerInitializer</class-name> + <class-name>org.apache.geode.addon.cache.CacheServerInitializer</class-name> <parameter name="system.property.prefix"> <string>cacheserver</string> </parameter> @@ -2811,7 +2811,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` ``` pre <parameter name="cacheserver"> <declarable> - <class-name>com.gemstone.gemfire.addon.cache.CacheServerInitializer</class-name> + <class-name>org.apache.geode.addon.cache.CacheServerInitializer</class-name> <parameter name="system.property.prefix"> <string>cacheserver</string> </parameter> @@ -2854,7 +2854,7 @@ Specify the Java class for the function and its initialization parameters with t **Default:** -**API:** `com.gemstone.gemfire.cache.execute.FunctionService` +**API:** `org.apache.geode.cache.execute.FunctionService` **Example:** @@ -2870,7 +2870,7 @@ Specify the Java class for the function and its initialization parameters with t A memory monitor that tracks cache size as a percentage of total heap or off-heap memory and controls size by restricting access to the cache and prompting eviction of old entries from the cache. For tenured heap, used in conjunction with settings for JVM memory and Java garbage collection. For off-heap memory, used with the off-heap memory manager. -**API:** `com.gemstone.gemfire.cache.control.ResourceManager` +**API:** `org.apache.geode.cache.control.ResourceManager` <a id="resource-manager__table_1132A19E9DC54A67B8C7A625338E346D"></a> @@ -2956,7 +2956,7 @@ Allows you to configure the DataSerializer for this Geode member. It registers a Specify the Java class for the `DataSerializer` and its initialization parameters with the `<class-name>` sub-element. -**API:** You can also register a `DataSerializer` by using the `com.gemstone.gemfire.DataSerializer.register` API. Use the `com.gemstone.gemfire.Instantiator` API to register a `DataSerializable` implementation. +**API:** You can also register a `DataSerializer` by using the `org.apache.geode.DataSerializer.register` API. Use the `org.apache.geode.Instantiator` API to register a `DataSerializable` implementation. ## <a id="instantiator" class="no-quick-link"></a><instantiator> @@ -2966,7 +2966,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` **API:** `DataSerializable` -You can also directly specify `<instantiator>` as a sub-element of `<cache>`. Use the `com.gemstone.gemfire.Instantiator` API to register a `DataSerializable` implementation as the serialization framework for the cache. The following table lists the attribute that can be specified for an `<instantiator>`. +You can also directly specify `<instantiator>` as a sub-element of `<cache>`. Use the `org.apache.geode.Instantiator` API to register a `DataSerializable` implementation as the serialization framework for the cache. The following table lists the attribute that can be specified for an `<instantiator>`. <a id="instantiator__table_AEEBB1AB95174276B95861A55C07FBB1"></a> @@ -3021,7 +3021,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` ``` pre <parameter name="cacheserver"> <declarable> - <class-name>com.gemstone.gemfire.addon.cache.CacheServerInitializer</class-name> + <class-name>org.apache.geode.addon.cache.CacheServerInitializer</class-name> <parameter name="system.property.prefix"> <string>cacheserver</string> </parameter> @@ -3061,7 +3061,7 @@ Specify the Java class and its initialization parameters with the `<class-name>` ``` pre <parameter name="cacheserver"> <declarable> - <class-name>com.gemstone.gemfire.addon.cache.CacheServerInitializer</class-name> + <class-name>org.apache.geode.addon.cache.CacheServerInitializer</class-name> <parameter name="system.property.prefix"> <string>cacheserver</string> </parameter>
