forked from apache/ignite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IEP-4 Baseline topology for persistent caches (Phase 1)
Contributed by: Dmitriy Govorukhin <dmitriy.govorukhin@gmail.com> Dmitry Pavlov <dpavlov.spb@gmail.com> Eduard Shangareev <eduard.shangareev@gmail.com> Ilya Lantukh <ilantukh@gridgain.com> Ivan Rakov <ivan.glukos@gmail.com> Sergey Chugunov <sergey.chugunov@gmail.com>
- Loading branch information
1 parent
43a62cd
commit 6f7aba8
Showing
259 changed files
with
17,859 additions
and
2,820 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
modules/core/src/main/java/org/apache/ignite/cluster/BaselineNode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You under the Apache License, Version 2.0 | ||
* (the "License"); you may not use this file except in compliance with | ||
* the License. You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.apache.ignite.cluster; | ||
|
||
import java.util.Map; | ||
import org.apache.ignite.configuration.IgniteConfiguration; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
/** | ||
* Interface representing a single node from baseline topology. | ||
*/ | ||
public interface BaselineNode { | ||
/** | ||
* Gets consistent globally unique node ID. This method returns consistent node ID which | ||
* survives node restarts. | ||
* | ||
* @return Consistent globally unique node ID. | ||
*/ | ||
public Object consistentId(); | ||
|
||
/** | ||
* Gets a node attribute. Attributes are assigned to nodes at startup | ||
* via {@link IgniteConfiguration#getUserAttributes()} method. | ||
* <p> | ||
* The system adds the following attributes automatically: | ||
* <ul> | ||
* <li>{@code {@link System#getProperties()}} - All system properties.</li> | ||
* <li>{@code {@link System#getenv(String)}} - All environment properties.</li> | ||
* <li>All attributes defined in {@link org.apache.ignite.internal.IgniteNodeAttributes}</li> | ||
* </ul> | ||
* <p> | ||
* Note that attributes cannot be changed at runtime. | ||
* | ||
* @param <T> Attribute Type. | ||
* @param name Attribute name. <b>Note</b> that attribute names starting with | ||
* {@code org.apache.ignite} are reserved for internal use. | ||
* @return Attribute value or {@code null}. | ||
*/ | ||
@Nullable | ||
public <T> T attribute(String name); | ||
|
||
/** | ||
* Gets all node attributes. Attributes are assigned to nodes at startup | ||
* via {@link IgniteConfiguration#getUserAttributes()} method. | ||
* <p> | ||
* The system adds the following attributes automatically: | ||
* <ul> | ||
* <li>{@code {@link System#getProperties()}} - All system properties.</li> | ||
* <li>{@code {@link System#getenv(String)}} - All environment properties.</li> | ||
* <li>All attributes defined in {@link org.apache.ignite.internal.IgniteNodeAttributes}</li> | ||
* </ul> | ||
* <p> | ||
* Note that attributes cannot be changed at runtime. | ||
* | ||
* @return All node attributes. | ||
*/ | ||
public Map<String, Object> attributes(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.