[jira] [Created] (MAPREDUCE-7516) Null configuration cause startup failure

2025-08-19 Thread John Doe (Jira)
John Doe created MAPREDUCE-7516: --- Summary: Null configuration cause startup failure Key: MAPREDUCE-7516 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7516 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7515) NPE in MRAppMaster shutdown hook before initialization

2025-08-18 Thread John Doe (Jira)
John Doe created MAPREDUCE-7515: --- Summary: NPE in MRAppMaster shutdown hook before initialization Key: MAPREDUCE-7515 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7515 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7514) purgeLogsOlderThan before getJournaledEdits triggers exception

2025-08-17 Thread John Doe (Jira)
John Doe created MAPREDUCE-7514: --- Summary: purgeLogsOlderThan before getJournaledEdits triggers exception Key: MAPREDUCE-7514 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7514 Project: Hadoop

[jira] [Created] (MAPREDUCE-7513) Thread-unsafe collection can be accessed concurrently

2025-08-13 Thread John Doe (Jira)
John Doe created MAPREDUCE-7513: --- Summary: Thread-unsafe collection can be accessed concurrently Key: MAPREDUCE-7513 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7513 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7512) Thread-unsafe collection can cause lost operation

2025-08-10 Thread John Doe (Jira)
John Doe created MAPREDUCE-7512: --- Summary: Thread-unsafe collection can cause lost operation Key: MAPREDUCE-7512 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7512 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7511) adminAcl can be refreshed while checking

2025-08-09 Thread John Doe (Jira)
John Doe created MAPREDUCE-7511: --- Summary: adminAcl can be refreshed while checking Key: MAPREDUCE-7511 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7511 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7510) Use before initialization in TaskAttemptListenerImpl

2025-08-09 Thread John Doe (Jira)
John Doe created MAPREDUCE-7510: --- Summary: Use before initialization in TaskAttemptListenerImpl Key: MAPREDUCE-7510 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7510 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7509) OutOfBoundary in LocalJobRunner

2025-08-08 Thread John Doe (Jira)
John Doe created MAPREDUCE-7509: --- Summary: OutOfBoundary in LocalJobRunner Key: MAPREDUCE-7509 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7509 Project: Hadoop Map/Reduce Issue Type

[jira] [Created] (MAPREDUCE-7507) Interleaving of double execution getTask() can cause a NullPointerException

2025-07-04 Thread John Doe (Jira)
John Doe created MAPREDUCE-7507: --- Summary: Interleaving of double execution getTask() can cause a NullPointerException Key: MAPREDUCE-7507 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7507

[jira] [Created] (MAPREDUCE-7501) createInDiskSegment failed since no writer

2025-02-21 Thread John Doe (Jira)
John Doe created MAPREDUCE-7501: --- Summary: createInDiskSegment failed since no writer Key: MAPREDUCE-7501 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7501 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7498) IllegalStateException rasied by race condition

2025-02-13 Thread John Doe (Jira)
John Doe created MAPREDUCE-7498: --- Summary: IllegalStateException rasied by race condition Key: MAPREDUCE-7498 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7498 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7499) Assertion raised in BackupStore

2025-02-13 Thread John Doe (Jira)
John Doe created MAPREDUCE-7499: --- Summary: Assertion raised in BackupStore Key: MAPREDUCE-7499 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7499 Project: Hadoop Map/Reduce Issue Type

[jira] [Created] (MAPREDUCE-7484) Invalid transitions for JobImpl on COMMITTING

2024-08-16 Thread John Doe (Jira)
John Doe created MAPREDUCE-7484: --- Summary: Invalid transitions for JobImpl on COMMITTING Key: MAPREDUCE-7484 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7484 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7483) getTask() can cause a dead lock

2024-08-16 Thread John Doe (Jira)
John Doe created MAPREDUCE-7483: --- Summary: getTask() can cause a dead lock Key: MAPREDUCE-7483 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7483 Project: Hadoop Map/Reduce Issue Type

[jira] [Created] (MAPREDUCE-7480) Invalid transitions for JobImpl

2024-08-11 Thread John Doe (Jira)
John Doe created MAPREDUCE-7480: --- Summary: Invalid transitions for JobImpl Key: MAPREDUCE-7480 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7480 Project: Hadoop Map/Reduce Issue Type

[jira] [Created] (MAPREDUCE-7089) ReadMapper.doIO hangs with user misconfigured inputs

2018-04-27 Thread John Doe (JIRA)
John Doe created MAPREDUCE-7089: --- Summary: ReadMapper.doIO hangs with user misconfigured inputs Key: MAPREDUCE-7089 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7089 Project: Hadoop Map/Reduce

[jira] [Created] (MAPREDUCE-7088) DistributedFSCheckMapper.doIO hangs with user misconfigured inputs

2018-04-27 Thread John Doe (JIRA)
John Doe created MAPREDUCE-7088: --- Summary: DistributedFSCheckMapper.doIO hangs with user misconfigured inputs Key: MAPREDUCE-7088 URL: https://issues.apache.org/jira/browse/MAPREDUCE-7088 Project

best way to select a BytesWritable record in a reducer

2013-07-02 Thread john doe
Hello, I am trying to find the best way to write a reducer that selects a single value for each key it receives. It seems that bytes array in BytesWritable instances are reutilized by mapreduce, requiring me to copy the content of the buffer in order to keep a reference to the data. Here is the