Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class ApacheIgnite3Teamcity {
"Examples",
"ignite-examples"
)
private val IGNITE__FILE_IO = GradleModule(
private val IGNITE__FILE_IO = GradleModule(
"File IO",
"ignite-file-io"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,6 @@ When the exception happens, Apache Ignite provides a UUID of the specific except
|---|---|---|
| `IGN-NETWORK-1` | The node with the specified ID is not in the physical topology. | Check the error message and node ID. Update node ID if it is incorrect. If the node is offline, check why and bring it back online. |
| `IGN-NETWORK-2` | Port is already in use. | Most likely, Apache Ignite tried to access the port occupied by a different process. Change the port or free it, and then restart the node. |
| `IGN-NETWORK-3` | File transfer error. | Check network connectivity and retry the file transfer. |
| `IGN-NETWORK-4` | File validation error. | Ensure the file is not corrupted. |
| `IGN-NETWORK-5` | Recipient node has left the physical topology. | Check the error message. The node is unavailable and need to be brought back into the cluster. |
| `IGN-NETWORK-6` | Could not resolve address. Most likely, the IP address specified in the operation is not available locally. | Change the node configuration to make the address available or use a different IP address. |

Expand Down
11 changes: 0 additions & 11 deletions docs/docs/configure-and-operate/reference/node-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,6 @@ Example configuration with a `STATIC` node finder:
{
"ignite" : {
"network" : {
"fileTransfer" : {
"chunkSizeBytes" : 1048576,
"maxConcurrentRequests" : 4,
"responseTimeoutMillis" : 10000,
"threadPoolSize" : 8
},
"inbound" : {
"soBacklog" : 128,
"soKeepAlive" : true,
Expand Down Expand Up @@ -205,11 +199,6 @@ To switch to a `MULTICAST` node finder, update the `nodeFinder` section in your

| Property | Default | Description | Changeable | Requires Restart | Acceptable Values |
|----------|---------|-------------|------------|------------------|-------------------|
| fileTransfer | | File transfer configuration. | | | |
| fileTransfer.chunkSizeBytes | 1048576 | Chunk size in bytes. | Yes | Yes | 1 - Integer.MAX_VALUE |
| fileTransfer.maxConcurrentRequests | 4 | Maximum number of concurrent requests. | Yes | Yes | 1 - Integer.MAX_VALUE |
| fileTransfer.responseTimeoutMillis | 10000 | Node response timeout during file transfer. | Yes | Yes | 0 - inf |
| fileTransfer.threadPoolSize | 8 | File sender thread pool size. | Yes | Yes | 1 - Integer.MAX_VALUE |
| inbound | | Server socket configuration. See [TCP documentation](https://man7.org/linux/man-pages/man7/tcp.7.html) and [socket documentation](https://man7.org/linux/man-pages/man7/socket.7.html) for more information. | | | |
| inbound.soBacklog | 128 | The size of the backlog. | Yes | Yes | 0 - Integer.MAX_VALUE |
| inbound.soKeepAlive | true | Defines if the keep-alive packets are allowed. | Yes | Yes | true, false |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,6 @@ In Apache Ignite 3, you can choose between two node discovery types. With `STATI
{
"ignite" : {
"network" : {
"fileTransfer" : {
"chunkSizeBytes" : 1048576,
"maxConcurrentRequests" : 4,
"responseTimeoutMillis" : 10000,
"threadPoolSize" : 8
},
"inbound" : {
"soBacklog" : 128,
"soKeepAlive" : true,
Expand Down Expand Up @@ -223,11 +217,6 @@ In Apache Ignite 3, you can choose between two node discovery types. With `STATI

| Property | Default | Description | Changeable | Requires Restart | Acceptable Values |
|----------|---------|-------------|------------|------------------|-------------------|
| fileTransfer | | File transfer configuration. | | | |
| fileTransfer.chunkSizeBytes | 1048576 | Chunk size in bytes. | Yes | Yes | 1 - Integer.MAX_VALUE |
| fileTransfer.maxConcurrentRequests | 4 | Maximum number of concurrent requests. | Yes | Yes | 1 - Integer.MAX_VALUE |
| fileTransfer.responseTimeoutMillis | 10000 | Node response timeout during file transfer. | Yes | Yes | 0 - inf |
| fileTransfer.threadPoolSize | 8 | File sender thread pool size. | Yes | Yes | 1 - Integer.MAX_VALUE |
| inbound | | Server socket configuration. See [TCP documentation](https://man7.org/linux/man-pages/man7/tcp.7.html) and [socket documentation](https://man7.org/linux/man-pages/man7/socket.7.html) for more information. | | | |
| inbound.soBacklog | 128 | The size of the backlog. | Yes | Yes | 0 - Integer.MAX_VALUE |
| inbound.soKeepAlive | true | Defines if the keep-alive packets are allowed. | Yes | Yes | true, false |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,11 +554,8 @@ public static class Network {
/** Address or port bind error. */
public static final int BIND_ERR = NETWORK_ERR_GROUP.registerErrorCode((short) 2);

/** File transfer error. */
public static final int FILE_TRANSFER_ERR = NETWORK_ERR_GROUP.registerErrorCode((short) 3);

/** File validation error. */
public static final int FILE_VALIDATION_ERR = NETWORK_ERR_GROUP.registerErrorCode((short) 4);
// Error codes 3 (FILE_TRANSFER_ERR) and 4 (FILE_VALIDATION_ERR) were removed along with the file-transfer module.
// These codes are reserved forever and must not be reused.

/** Recipient node has left the physical topology. */
public static final int RECIPIENT_LEFT_ERR = NETWORK_ERR_GROUP.registerErrorCode((short) 5);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ class ApiCompatibilityTest {
"3.1.0", List.of(
// Erroneous error code remove between versions
"org.apache.ignite.lang.ErrorGroups$DisasterRecovery#RESTART_WITH_CLEAN_UP_ERR",
// Removed along with the file-transfer module
"org.apache.ignite.lang.ErrorGroups$Network#FILE_TRANSFER_ERR",
"org.apache.ignite.lang.ErrorGroups$Network#FILE_VALIDATION_ERR",
"org.apache.ignite.table.KeyValueView" // METHOD_ABSTRACT_NOW_DEFAULT
+ "#remove(org.apache.ignite.tx.Transaction, java.lang.Object, java.lang.Object)",
"org.apache.ignite.table.KeyValueView" // METHOD_ABSTRACT_NOW_DEFAULT
Expand Down
26 changes: 0 additions & 26 deletions modules/file-transfer/README.md

This file was deleted.

47 changes: 0 additions & 47 deletions modules/file-transfer/build.gradle

This file was deleted.

Loading
Loading