The resourcemanager is ambiguous. The main two subjects identified are the .net ResourceManager (related to resx), and the hadoop Resource Manager.
Questions tagged [resourcemanager]
267 questions
0
votes
1 answer
Resource Manager: How to get list of app ids that were executed in a given job queue
I want to get a list of YARN app ids that were executed in a MapReduce job queue.
I explored Resource Manager API but could not find an API which simply requires me to pass job queue name and get the list of app ids.
Is there a way to achieve this?

Akshay Singh
- 139
- 2
- 11
0
votes
4 answers
"yarn resourcemanager" yields "The system cannot find the batch label specified - resourcemanager"
I am running hadoop 2.7.1 on windows 64 in pseudo-distributed mode, and can't manage to run yarn. Whenever I try to start it via yarn resourcemanager I get the following output:
The system cannot find the batch label specified -…

st1led
- 385
- 2
- 4
- 18
0
votes
0 answers
YARN RM reports negative resources usage
I've recently faced few issues with resource allocation in YARN (my Hadoop MR app was not able to allocate new containers, while cluster was almost free) and I've looked into RM's scheduler stats (http:///ws/v1/cluster/scheduler) where some…

Filipp
- 859
- 1
- 6
- 20
0
votes
1 answer
When YARN is running the hadoop job submitted get stuck in Accepted state
I am using VirualBox to run Ubuntu 14 VM on Windows laptop. I have configured Apache distribution HDFS and YARN for Single Node. When I run dfs and YARN then all required demons are running. When I don't configure YARN and run DFS only then I can…

Shailesh
- 405
- 1
- 5
- 18
0
votes
0 answers
list iterator not incremantable with resourcemanager
I am working on a resource manager for my game. However on loading the game there seems to be an issue regarding the list iterator. I get the following error
My Output
My code:
ResourceManagement*_rManager = new ResourceManagement();
…

KevinTheGreat
- 634
- 5
- 22
0
votes
0 answers
type specifier required for class
I am trying to use my class ResourceManagement in my levelmanager, so that I can start creating resources.
however I get the following error(s)
Severity Code Description Project File Line Suppression State
Error C4430 missing type…

KevinTheGreat
- 634
- 5
- 22
0
votes
0 answers
YARN resource manager message losgstash
I am trying to generate pie chart based on the final status of the job from RM logs. Since "RESULT=" string is in the "message" of the log, we are not able to extract it.
After doing some research we came to know that we need to write a grok pattern…

user3330284
- 373
- 2
- 6
- 14
0
votes
0 answers
Switching from LocalJobRunner in Hadoop 2.x
I am running MapReduce programs using Hadoop 2.6.0. The execution seems to go well with the desired output each time round. But when i look up the resource manager web UI at localhost:8088, it is completely empty and not being updated. After looking…

aadhi95
- 11
- 1
0
votes
1 answer
Getting correct translation using ResourceManager and Reflection
I have a web application which uses different resource files:
English resources
CommonResources.resx
NightResources.resx (resources used when DayTime == DayTime.Night)
DayResources.resx (resources used when DayTime == DayTime.Day) …

RWC
- 4,697
- 2
- 22
- 29
0
votes
3 answers
Resource manager exception, no solution seems to work
Trying to use resource manager to get a string from a resource in a project, I keep getting the following exception:
An unhandled exception of type system.Resources.MissingManifestResourceException' occurred in mscorlib.dll.
So I decided to…
user4129529
0
votes
1 answer
C# + SharpDevelop: screwed up resourcemanager after changing root namespace?
After recognizing that my project already exists under the used solutionname i decided to rename the whole solution. I need to do that because I want to share the source code on my homepage as well as the application itself and don't want it to look…
user7123886
0
votes
1 answer
Resource Manager API using default user - webuser
I have been trying to use the resource manager api in hadoop to submit jobs (as given in http://hadoop.apache.org/docs/current/hadoop-yarn/hadoop-yarn-site/ResourceManagerRest.html#Cluster_Writeable_APIs).
When I try to submit a job, from any user…

Krishna
- 3
- 4
0
votes
0 answers
Hadoop : How to obtain or calculate queue weight?
I know these values can be obtained within the fairscheduler.xml file. But is there a way we can compute this number using one of the resource managers RESTFul endpoints?
References I've been sifting through for this…

stackoverflow
- 18,348
- 50
- 129
- 196
0
votes
1 answer
Resource manager does not transit to active state from standby
One spark job was running for more than 23 days and eventually caused the resource manager to crash. After restarting the resource manager istance (there are two of them in our cluster) both of them stayed in standby state.
And we are getting this…

Mrinal
- 1,826
- 2
- 19
- 31
0
votes
1 answer
ASP.NET Resource File, Resource Manager for Language Translation
Spending hours on this. Thinking my thought process might be off..
I wanted to create one point of entry for language translation across different libraries and applications.
What I did was the following:
Created New Class Library Project called…
user1941432