How to add a column to all connected nodes - mnesia table
I am trying to add new column to an existing mnesia table. For that, I use following code.
test()->
Transformer =
fun(X)-> % when is_record(X, user) -> %previous users
#userssname = X#user.name,
age = X#user.age,
email = X#user.email,
year = 1990
end,
AF = mnesia:transform_table(user, Transformer,record_info(fields, userss),userss),
mnesia:sync_transaction(AF).
Two records I have
-record(user,name,age,email).
-record(users,name,age,email,year).
I want to update all connected node's tables. But it fails.
aborted,badarg,aborted,"Bad transform function",user,
#Fun<test.2.61379004>,'otherserver@192.168.169.1',
badfun,#Fun<test.2.61379004>,
,infinity,mnesia
What is the problem here?
erlang mnesia erl
add a comment |
I am trying to add new column to an existing mnesia table. For that, I use following code.
test()->
Transformer =
fun(X)-> % when is_record(X, user) -> %previous users
#userssname = X#user.name,
age = X#user.age,
email = X#user.email,
year = 1990
end,
AF = mnesia:transform_table(user, Transformer,record_info(fields, userss),userss),
mnesia:sync_transaction(AF).
Two records I have
-record(user,name,age,email).
-record(users,name,age,email,year).
I want to update all connected node's tables. But it fails.
aborted,badarg,aborted,"Bad transform function",user,
#Fun<test.2.61379004>,'otherserver@192.168.169.1',
badfun,#Fun<test.2.61379004>,
,infinity,mnesia
What is the problem here?
erlang mnesia erl
add a comment |
I am trying to add new column to an existing mnesia table. For that, I use following code.
test()->
Transformer =
fun(X)-> % when is_record(X, user) -> %previous users
#userssname = X#user.name,
age = X#user.age,
email = X#user.email,
year = 1990
end,
AF = mnesia:transform_table(user, Transformer,record_info(fields, userss),userss),
mnesia:sync_transaction(AF).
Two records I have
-record(user,name,age,email).
-record(users,name,age,email,year).
I want to update all connected node's tables. But it fails.
aborted,badarg,aborted,"Bad transform function",user,
#Fun<test.2.61379004>,'otherserver@192.168.169.1',
badfun,#Fun<test.2.61379004>,
,infinity,mnesia
What is the problem here?
erlang mnesia erl
I am trying to add new column to an existing mnesia table. For that, I use following code.
test()->
Transformer =
fun(X)-> % when is_record(X, user) -> %previous users
#userssname = X#user.name,
age = X#user.age,
email = X#user.email,
year = 1990
end,
AF = mnesia:transform_table(user, Transformer,record_info(fields, userss),userss),
mnesia:sync_transaction(AF).
Two records I have
-record(user,name,age,email).
-record(users,name,age,email,year).
I want to update all connected node's tables. But it fails.
aborted,badarg,aborted,"Bad transform function",user,
#Fun<test.2.61379004>,'otherserver@192.168.169.1',
badfun,#Fun<test.2.61379004>,
,infinity,mnesia
What is the problem here?
erlang mnesia erl
erlang mnesia erl
asked Nov 12 at 6:05
Sachith
1,45252036
1,45252036
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The problem is that an anonymous function can only be called on nodes where the module that defines it is loaded. I guess you loaded the module containing the test
function only on one node in the cluster - you need to load it on all nodes for this to work. You can use the nl
command ("network load") instead of l
in the Erlang shell for that:
nl(my_module).
nl
and other commands are described here.
1
yes, this solved my issue. runningnl(module).
in lowest version if there are multiple versions of erlang solved the issue completely.
– Sachith
Nov 12 at 10:52
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53256651%2fhow-to-add-a-column-to-all-connected-nodes-mnesia-table%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The problem is that an anonymous function can only be called on nodes where the module that defines it is loaded. I guess you loaded the module containing the test
function only on one node in the cluster - you need to load it on all nodes for this to work. You can use the nl
command ("network load") instead of l
in the Erlang shell for that:
nl(my_module).
nl
and other commands are described here.
1
yes, this solved my issue. runningnl(module).
in lowest version if there are multiple versions of erlang solved the issue completely.
– Sachith
Nov 12 at 10:52
add a comment |
The problem is that an anonymous function can only be called on nodes where the module that defines it is loaded. I guess you loaded the module containing the test
function only on one node in the cluster - you need to load it on all nodes for this to work. You can use the nl
command ("network load") instead of l
in the Erlang shell for that:
nl(my_module).
nl
and other commands are described here.
1
yes, this solved my issue. runningnl(module).
in lowest version if there are multiple versions of erlang solved the issue completely.
– Sachith
Nov 12 at 10:52
add a comment |
The problem is that an anonymous function can only be called on nodes where the module that defines it is loaded. I guess you loaded the module containing the test
function only on one node in the cluster - you need to load it on all nodes for this to work. You can use the nl
command ("network load") instead of l
in the Erlang shell for that:
nl(my_module).
nl
and other commands are described here.
The problem is that an anonymous function can only be called on nodes where the module that defines it is loaded. I guess you loaded the module containing the test
function only on one node in the cluster - you need to load it on all nodes for this to work. You can use the nl
command ("network load") instead of l
in the Erlang shell for that:
nl(my_module).
nl
and other commands are described here.
answered Nov 12 at 9:30
legoscia
28.4k1179110
28.4k1179110
1
yes, this solved my issue. runningnl(module).
in lowest version if there are multiple versions of erlang solved the issue completely.
– Sachith
Nov 12 at 10:52
add a comment |
1
yes, this solved my issue. runningnl(module).
in lowest version if there are multiple versions of erlang solved the issue completely.
– Sachith
Nov 12 at 10:52
1
1
yes, this solved my issue. running
nl(module).
in lowest version if there are multiple versions of erlang solved the issue completely.– Sachith
Nov 12 at 10:52
yes, this solved my issue. running
nl(module).
in lowest version if there are multiple versions of erlang solved the issue completely.– Sachith
Nov 12 at 10:52
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53256651%2fhow-to-add-a-column-to-all-connected-nodes-mnesia-table%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown